Masterctrl/Sources/MasterCtrl.h
J-F Martel 31997aad40 Dev
2015-12-02 20:37:01 -05:00

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