Files
create/src/App/PartPyImp.cpp
2016-04-12 18:12:02 +02:00

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;
}