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