| 30 | for(int i=myynest;i>=0;i--) iiLocalRing[i]=r; |
| 31 | } |
| 32 | void export_ring() |
| 33 | { |
| 34 | boost::python::class_<Ring>("Ring", "reference to a Singular ring") |
| 35 | .def("__str__", Ring_as_str) |
| 36 | .def("set", ring_set,"equivalent to the singular command setring, which is not mapped as it is a command") |
| 37 | .def(boost::python::init <>()); |
| 38 | } |
| 39 | #endif |
no outgoing calls
no test coverage detected