00001 #ifndef QRK_DEVICE_SERVER_H
00002 #define QRK_DEVICE_SERVER_H
00003
00013 namespace qrk
00014 {
00018 class DeviceServer
00019 {
00020 public:
00021 virtual ~DeviceServer(void)
00022 {
00023 }
00024
00025 virtual bool activate(long port) = 0;
00026
00027 virtual int updateInterval(void) = 0;
00028
00029 virtual void update(void) = 0;
00030 };
00031 }
00032
00033 #endif