add missing files
This commit is contained in:
committed by
Stefan Tröger
parent
952d9140d3
commit
b1d7dbe2f0
29
src/Mod/Assembly/App/ConstraintPyImp.cpp
Normal file
29
src/Mod/Assembly/App/ConstraintPyImp.cpp
Normal file
@@ -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("<ConstraintAssembly object>");
|
||||
}
|
||||
|
||||
|
||||
PyObject *ConstraintPy::getCustomAttributes(const char* /*attr*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ConstraintPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user