bindings/python/chain.cpp
author Dmitriy Morozov <dmitriy@mrzv.org>
Thu, 29 Jan 2009 10:16:56 -0800
branchdev
changeset 112 f209958b5c17
parent 104 2cc1db3b98c6
child 126 3c3e77ac43d2
permissions -rw-r--r--
Added python bindings for ZigzagPersistence (as well as ImageZigzagPersistence)

#include <topology/chain.h>
#include "python-static-persistence.h"
#include <boost/python.hpp>

using namespace boost::python;

typedef     SPersistence::OrderDescriptor::Chains::Chain        VChain;


VChain::const_iterator      begin(const VChain& c)              { return c.begin(); }
VChain::const_iterator      end(const VChain& c)                { return c.end(); }

void export_chain()
{
    class_<VChain>("Chain")
        .def("__iter__",    range(&begin, &end))
    ;
}