#pragma once
|
#include "stdafx.h"
|
#include "MBQueryDmsCatalog.h"
|
/************************************************************************/
|
/* Ŀ¼¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBQueryDmsCatalogMgr
|
:public CMBBaseCatalogMgr
|
{
|
public:
|
CMBQueryDmsCatalogMgr(void);
|
~CMBQueryDmsCatalogMgr(void);
|
public:
|
virtual void Abst(){};
|
public:
|
bool AddCatalog(CMBQueryDmsCatalog *pCatalog); // Ìí¼ÓÊý¾Ý
|
bool RemoveAllCatalog(); // ÒÆ³ýĿ¼
|
bool ParseXml( CString &strXml,CString &strErrInfo ); // ½âÎö·þÎñ·µ»ØµÄÐÅÏ¢
|
};
|
|