1
#include <boost/python.hpp>
2
namespace bp = boost::python;
3
4
5
void export_ann_kd_tree();
6
7
8
BOOST_PYTHON_MODULE(pyANN)
9
{
10
export_ann_kd_tree();
11
};