28 lines
515 B
C++
28 lines
515 B
C++
#ifndef MASTERCTRL_H
|
|
#define MASTERCTRL_H
|
|
|
|
#include "GlobalDefine.h"
|
|
#include "DeadboltDevice.h"
|
|
#include "AVReceiverDevice.h"
|
|
#include "VoipMsSMSClient.h"
|
|
#include "SystemTrayManager.h"
|
|
|
|
class CMasterCtrl
|
|
{
|
|
public:
|
|
CMasterCtrl();
|
|
~CMasterCtrl();
|
|
|
|
void Start(void);
|
|
CDeadboltDevice *mDeadBoltDevice;
|
|
CAVReceiverDevice *mAVReceiverDevice;
|
|
CVoipMsSMSClient *mVoipMsSMSClient;
|
|
CSystemTrayManager *mSystemTrayManager;
|
|
|
|
|
|
unsigned int QuitApplicationRequest();
|
|
|
|
};
|
|
|
|
#endif // MASTERCTRL_H
|