| 171 | } |
| 172 | |
| 173 | PyObject* LinkBaseExtension::getExtensionPyObject() |
| 174 | { |
| 175 | if (ExtensionPythonObject.is(Py::_None())) { |
| 176 | // ref counter is set to 1 |
| 177 | ExtensionPythonObject = Py::Object(new LinkBaseExtensionPy(this), true); |
| 178 | } |
| 179 | return Py::new_reference_to(ExtensionPythonObject); |
| 180 | } |
| 181 | |
| 182 | const std::vector<LinkBaseExtension::PropInfo>& LinkBaseExtension::getPropertyInfo() const |
| 183 | { |
no test coverage detected