15 lines
167 B
C++
15 lines
167 B
C++
#ifndef MASTERCTRL_H
|
|
#define MASTERCTRL_H
|
|
|
|
#include "GlobalDefine.h"
|
|
|
|
class CMasterCtrl
|
|
{
|
|
public:
|
|
CMasterCtrl();
|
|
|
|
void Start(void);
|
|
};
|
|
|
|
#endif // MASTERCTRL_H
|