bindings/python/chain.cpp
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 28 Jan 2009 14:57:17 -0800
branchdev
changeset 111 958dec48d946
parent 104 2cc1db3b98c6
child 126 3c3e77ac43d2
permissions -rw-r--r--
Switched to CGAL 3.4 (native CMake configuration): for now only alphashapes

#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))
    ;
}