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