1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #pragma once
| #include "stdafx.h"
| #include "MBSysAppInfo.h"
|
| /************************************************************************/
| /* ϵͳӦÓÃÐÅÏ¢¹ÜÀí */
| /************************************************************************/
| class AFX_EXT_CLASS CMBSysAppMgr:
| public CMBBaseAppMgr
| {
| public:
| CMBSysAppMgr(void);
| ~CMBSysAppMgr(void);
| public:
| void Abst(){}; // ³éÏó
| CMBBaseAppObj *GetFloderAppObj(CMBBaseAppObj *pBaseAppObj); // µÃµ½Îļþ¼ÐϵͳÐÅÏ¢
| bool ParseXml( CString &strXml,CString &strErrInfo ); // ½âÎö·þÎñ¶Ë·µ»ØµÄÐÅÏ¢
| };
|
|
|