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