10 lines
167 B
C++
10 lines
167 B
C++
|
|
#include <boost/python.hpp>
|
||
|
|
#include <boost/cstdint.hpp>
|
||
|
|
|
||
|
|
void exportPoint2();
|
||
|
|
|
||
|
|
BOOST_PYTHON_MODULE(libgeometry){
|
||
|
|
using namespace boost::python;
|
||
|
|
|
||
|
|
exportPoint2();
|
||
|
|
}
|