From b1d7dbe2f04f4f040b2992a420aa90463dcf2121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Tr=C3=B6ger?= Date: Mon, 29 Apr 2013 23:08:37 +0200 Subject: [PATCH] add missing files --- src/Mod/Assembly/App/ConstraintAxisPy.xml | 17 ++++++++++++ src/Mod/Assembly/App/ConstraintAxisPyImp.cpp | 29 ++++++++++++++++++++ src/Mod/Assembly/App/ConstraintPy.xml | 17 ++++++++++++ src/Mod/Assembly/App/ConstraintPyImp.cpp | 29 ++++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 src/Mod/Assembly/App/ConstraintAxisPy.xml create mode 100644 src/Mod/Assembly/App/ConstraintAxisPyImp.cpp create mode 100644 src/Mod/Assembly/App/ConstraintPy.xml create mode 100644 src/Mod/Assembly/App/ConstraintPyImp.cpp diff --git a/src/Mod/Assembly/App/ConstraintAxisPy.xml b/src/Mod/Assembly/App/ConstraintAxisPy.xml new file mode 100644 index 000000000..d54b6080f --- /dev/null +++ b/src/Mod/Assembly/App/ConstraintAxisPy.xml @@ -0,0 +1,17 @@ + + + + + + Base class of all objects in Assembly + + + diff --git a/src/Mod/Assembly/App/ConstraintAxisPyImp.cpp b/src/Mod/Assembly/App/ConstraintAxisPyImp.cpp new file mode 100644 index 000000000..a9a0d06bd --- /dev/null +++ b/src/Mod/Assembly/App/ConstraintAxisPyImp.cpp @@ -0,0 +1,29 @@ + +#include "PreCompiled.h" + +#include "Mod/Assembly/App/Constraint.h" + +// inclusion of the generated files (generated out of ItemAssemblyPy.xml) +#include "ConstraintAxisPy.h" +#include "ConstraintAxisPy.cpp" + +using namespace Assembly; + +// returns a string which represents the object e.g. when printed in python +std::string ConstraintAxisPy::representation(void) const +{ + return std::string(""); +} + + +PyObject *ConstraintAxisPy::getCustomAttributes(const char* /*attr*/) const +{ + return 0; +} + +int ConstraintAxisPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/) +{ + return 0; +} + + diff --git a/src/Mod/Assembly/App/ConstraintPy.xml b/src/Mod/Assembly/App/ConstraintPy.xml new file mode 100644 index 000000000..499502761 --- /dev/null +++ b/src/Mod/Assembly/App/ConstraintPy.xml @@ -0,0 +1,17 @@ + + + + + + Base class of all objects in Assembly + + + diff --git a/src/Mod/Assembly/App/ConstraintPyImp.cpp b/src/Mod/Assembly/App/ConstraintPyImp.cpp new file mode 100644 index 000000000..e763ea29a --- /dev/null +++ b/src/Mod/Assembly/App/ConstraintPyImp.cpp @@ -0,0 +1,29 @@ + +#include "PreCompiled.h" + +#include "Mod/Assembly/App/Constraint.h" + +// inclusion of the generated files (generated out of ItemAssemblyPy.xml) +#include "ConstraintPy.h" +#include "ConstraintPy.cpp" + +using namespace Assembly; + +// returns a string which represents the object e.g. when printed in python +std::string ConstraintPy::representation(void) const +{ + return std::string(""); +} + + +PyObject *ConstraintPy::getCustomAttributes(const char* /*attr*/) const +{ + return 0; +} + +int ConstraintPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/) +{ + return 0; +} + +