#ifndef MBWATCHMGR_H
|
#define MBWATCHMGR_H
|
#include "mbwatchconst.h"
|
#include "mbwatchuserdb.h"
|
#include "mbtaskmgr.h"
|
#include "mbmdware.h"
|
|
class CMBWatchMgr
|
{
|
public:
|
CMBWatchMgr();
|
~CMBWatchMgr();
|
private:
|
CMBWatchConst *m_pConst;
|
private:
|
CMBWatchUserDb *m_pUserDb;
|
CMBWatchUserMgr *m_pUserMgr;
|
private:
|
CMBTaskMgr *m_pTaskMgr;
|
CMBMdware *m_pMdWare;
|
public:
|
CMBWatchConst *getConst();
|
CMBWatchUserMgr *getUserMgr();
|
CMBTaskMgr *getTaskMgr();
|
CMBMdware *getMdWare();
|
public:
|
bool init(QString &errInfo);
|
public:
|
bool stop();
|
};
|
|
#endif // MBWATCHMGR_H
|