AlarmConnection.h 314 B

12345678910111213141516171819
  1. #ifndef __ALARMCONNECTION
  2. #define __ALARMCONNECTION
  3. class AlarmConnection:public SpSecureClient
  4. {
  5. public:
  6. AlarmConnection(CEntityBase *pEntity):SpSecureClient(pEntity);
  7. ~AlarmConnection(void);
  8. SendAlarmReq(AlarmReq*pAlarm);
  9. private:
  10. InitConnection();
  11. CreateConnection();
  12. CloseConnection();
  13. };
  14. #endif