1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| #pragma once
| #include "stdafx.h"
|
| /************************************************************************/
| /* Îĵµ±È½ÏÐÅÏ¢ */
| /************************************************************************/
| class AFX_EXT_CLASS CMBDocDiff
| :public CMBBaseDocObj
| {
| DECLARE_DYNAMIC(CMBDocDiff)
| public:
| CMBDocDiff(void);
| ~CMBDocDiff(void);
| public:
|
| protected:
| virtual void Abst(){};
| public:
| bool ParseXML(CString &strXML,CString &strErrInfo); // ½âÎö·þÎñ¶Ë·µ»ØµÄÐÅÏ¢
| };
|
|