34 lines
534 B
C++
34 lines
534 B
C++
|
|
#include "PreCompiled.h"
|
|
|
|
#include "App/Part.h"
|
|
|
|
// inclusion of the generated files (generated out of PartPy.xml)
|
|
#include "PartPy.h"
|
|
#include "PartPy.cpp"
|
|
|
|
using namespace App;
|
|
|
|
// returns a string which represents the object e.g. when printed in python
|
|
std::string PartPy::representation(void) const
|
|
{
|
|
return std::string("<Part object>");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PyObject *PartPy::getCustomAttributes(const char* /*attr*/) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int PartPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|