#pragma once
|
#include "stdafx.h"
|
#include "MBPsnCatalogInfo.h"
|
/************************************************************************/
|
/* ¸öÈËĿ¼¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBPsnCatalogMgr
|
: public CMBBaseCatalogMgr
|
{
|
public:
|
CMBPsnCatalogMgr(void);
|
~CMBPsnCatalogMgr(void);
|
public:
|
virtual void Abst(){};
|
public:
|
bool AddCatalogInfo(CMBPsnCatalogInfo *pCatalogInfo); // Ìí¼ÓÊý¾Ý
|
CMBPsnCatalogInfo *GetCatalogInfo( CString strID ); // ²éÕÒ
|
public:
|
bool RemoveAllCatalogInfo();
|
bool ParseXml( CString &strXml,CString &strErrInfo ); // ½âÎöÀ´×Ô¼º·þÎñ¶ËµÄÊý¾Ý
|
public:
|
CMBBaseCatalogObj *DeepFindCatalogObj( CString &strCatalogID ); // µÃµ½Ä¿Â¼ÐÅÏ¢ µÝ¹é
|
bool EmptyMgr();
|
};
|