add missing files
This commit is contained in:
parent
952d9140d3
commit
b1d7dbe2f0
17
src/Mod/Assembly/App/ConstraintAxisPy.xml
Normal file
17
src/Mod/Assembly/App/ConstraintAxisPy.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<GenerateModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="generateMetaModel_Module.xsd">
|
||||
<PythonExport
|
||||
Father="ConstraintPy"
|
||||
Name="ConstraintAxisPy"
|
||||
Twin="ConstraintAxis"
|
||||
TwinPointer="ConstraintAxis"
|
||||
Include="Mod/Assembly/App/ConstraintAxis.h"
|
||||
Namespace="Assembly"
|
||||
FatherInclude="Mod/Assembly/App/ConstraintPy.h"
|
||||
FatherNamespace="Assembly">
|
||||
<Documentation>
|
||||
<Author Licence="LGPL" Name="Stefan Tröger" EMail="stefantroeger@gmx.net" />
|
||||
<UserDocu>Base class of all objects in Assembly</UserDocu>
|
||||
</Documentation>
|
||||
</PythonExport>
|
||||
</GenerateModel>
|
29
src/Mod/Assembly/App/ConstraintAxisPyImp.cpp
Normal file
29
src/Mod/Assembly/App/ConstraintAxisPyImp.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 "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("<ConstraintAxisAssembly object>");
|
||||
}
|
||||
|
||||
|
||||
PyObject *ConstraintAxisPy::getCustomAttributes(const char* /*attr*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ConstraintAxisPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
17
src/Mod/Assembly/App/ConstraintPy.xml
Normal file
17
src/Mod/Assembly/App/ConstraintPy.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<GenerateModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="generateMetaModel_Module.xsd">
|
||||
<PythonExport
|
||||
Father="DocumentObjectPy"
|
||||
Name="ConstraintPy"
|
||||
Twin="Constraint"
|
||||
TwinPointer="Constraint"
|
||||
Include="Mod/Assembly/App/Constraint.h"
|
||||
Namespace="Assembly"
|
||||
FatherInclude="App/DocumentObjectPy.h"
|
||||
FatherNamespace="App">
|
||||
<Documentation>
|
||||
<Author Licence="LGPL" Name="Stefan Tröger" EMail="stefantroeger@gmx.net" />
|
||||
<UserDocu>Base class of all objects in Assembly</UserDocu>
|
||||
</Documentation>
|
||||
</PythonExport>
|
||||
</GenerateModel>
|
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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user