Extensions: special calls for document object extensions

This commit is contained in:
Stefan Tröger
2016-06-02 06:29:05 +02:00
committed by wmayer
parent 552fe52774
commit 16f8dbbacd
17 changed files with 732 additions and 38 deletions

View File

@@ -71,14 +71,12 @@ int ExtensionContainerPy::initialisation() {
PyObject* ExtensionContainerPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
{
// create a new instance of @self.export.Name@ and the Twin object
Base::Console().Message("Make\n");
return 0;
}
// constructor method
int ExtensionContainerPy::PyInit(PyObject* /*args*/, PyObject* /*kwd*/)
{
Base::Console().Message("Init\n");
return 0;
}