00001 #include "DebugActuator.h"
00002
00003 PyTypeObject DebugActuator::Type = {
00004 PyObject_HEAD_INIT(&PyType_Type)
00005 0,
00006 "DebugActuator",
00007 sizeof(DebugActuator),
00008 0,
00009 PyDestructor,
00010 0,
00011 __getattr,
00012 __setattr,
00013 0,
00014 __repr,
00015 0,
00016 0,
00017 0,
00018 0,
00019 0
00020 };
00021
00022 PyParentObject DebugActuator::Parents[] = {
00023 &SCA_IActuator::Type,
00024
00025 &CValue::Type,
00026 NULL
00027 };
00028 PyMethodDef DebugActuator::Methods[] = {
00029 {"debug", (PyCFunction) DebugActuator::sPyDebug, METH_VARARGS},
00030 {NULL,NULL}
00031 };
00032
00033
00034 PyObject*
00035 DebugActuator::_getattr(char* attr)
00036 {
00037 _getattr_up(SCA_IActuator);
00038 }