00001 00002 #include "PreCompiled.h" 00003 00004 #include "Mod/Part/App/Part2DObject.h" 00005 00006 // inclusion of the generated files (generated out of Part2DObjectPy.xml) 00007 #include "Part2DObjectPy.h" 00008 #include "Part2DObjectPy.cpp" 00009 00010 using namespace Part; 00011 00012 // returns a string which represents the object e.g. when printed in python 00013 std::string Part2DObjectPy::representation(void) const 00014 { 00015 return std::string("<Part2DObject object>"); 00016 } 00017 00018 00019 00020 PyObject *Part2DObjectPy::getCustomAttributes(const char* /*attr*/) const 00021 { 00022 return 0; 00023 } 00024 00025 int Part2DObjectPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/) 00026 { 00027 return 0; 00028 } 00029 00030