Masterctrl/Sources/MasterCtrl.h
2015-08-14 18:12:21 -04:00

20 lines
325 B
C++

#ifndef MASTERCTRL_H
#define MASTERCTRL_H
#include "GlobalDefine.h"
#include "DeadboltDevice.h"
#include "AVReceiverDevice.h"
class CMasterCtrl
{
public:
CMasterCtrl();
~CMasterCtrl();
void Start(void);
CDeadboltDevice *mDeadBoltDevice;
CAVReceiverDevice *mAVReceiverDevice;
};
#endif // MASTERCTRL_H