There can be only one (filename convention)
[mussa.git] / py / nway_paths.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 #include "alg/nway_paths.hpp"
5
6 void export_nway_paths()
7 {
8   class_<NwayPaths>("NwayPaths")
9     .add_property("pathz", range(&NwayPaths::pbegin, 
10                                  &NwayPaths::pend))
11     .add_property("refinedPathz", range(&NwayPaths::rpbegin,
12                                         &NwayPaths::rpend))
13   ;
14 }
15