00001 #ifndef _SFJROBOT 00002 #define _SFJROBOT 00003 #include "JbotProxy.h" 00004 00005 class JbotProxy; 00006 00007 class SfJRobot : public SfRobot 00008 { 00009 private: 00010 JbotProxy* proxy; 00011 00012 public: 00013 SfJRobot(); // constructor 00014 SfJRobot(JbotProxy* p); // constructor 00015 ~SfJRobot(); 00016 void sendJiniEvent(char* msg, int event); 00017 void sendJiniEvent(char* msg, int length, int event); 00018 void setProxy(JbotProxy* p); 00019 JbotProxy* getProxy(); 00020 }; 00021 00022 #endif