00001
00002
00003 #ifndef _REC_ROBOTINO_COM_POWERMANAGEMENT_H_
00004 #define _REC_ROBOTINO_COM_POWERMANAGEMENT_H_
00005
00006 #include "rec/robotino/com/Actor.h"
00007
00008 namespace rec
00009 {
00010 namespace robotino
00011 {
00012 namespace com
00013 {
00014
00018 class
00019 #ifdef WIN32
00020 # ifdef rec_robotino_com_EXPORTS
00021 __declspec(dllexport)
00022 #endif
00023 # ifdef rec_robotino_com2_EXPORTS
00024 __declspec(dllexport)
00025 #endif
00026 # ifdef rec_robotino_com3_EXPORTS
00027 __declspec(dllexport)
00028 #endif
00029 #endif
00030 PowerManagement : public Actor
00031 {
00032 public:
00039 float current() const;
00040
00047 float voltage() const;
00048 };
00049 }
00050 }
00051 }
00052 #endif
00053