| 19 | using namespace boost::python; |
| 20 | |
| 21 | BOOST_PYTHON_MODULE(ctor) |
| 22 | { |
| 23 | class_<Ctor>("Ctor", init<std::string>()) |
| 24 | .def(init<double, double>()) |
| 25 | .def("greet", &Ctor::greet) |
| 26 | .def("set", &Ctor::set) |
| 27 | ; |
| 28 | |
| 29 | } |
| 30 | |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected