00001 00010 #ifndef __BEATLISTENER_H__ 00011 #define __BEATLISTENER_H__ 00012 00013 #include "NetListener.h" 00014 00015 class BeatListener 00016 { 00017 public: 00018 BeatListener(int port); 00019 virtual ~BeatListener(); 00020 00021 bool Init(); 00022 void Close(); 00023 void Check(); 00024 00025 protected: 00026 NetListener *net; 00027 }; 00028 00029 #endif /* __BEATLISTENDER_H__ */