#pragma once
|
#include "stdafx.h"
|
#include "MBCabinetInfo.h"
|
|
/************************************************************************/
|
/* Îĵµ¹ñ¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBCabinetMgr
|
: public CMBBaseCabinetMgr
|
{
|
public:
|
CMBCabinetMgr(void);
|
~CMBCabinetMgr(void);
|
public:
|
virtual void Abst(){};
|
public:
|
bool AddCabinetInfo(CMBCabinetInfo *pCabinetInfo); // Ìí¼ÓÊý¾Ý
|
CMBCabinetInfo* GetCabinetInfo( CString strID ); // ²éÕÒ
|
bool ParseXml( CString &strXml,CString &strErrInfo ); // ½âÎö·þÎñ·µ»ØµÄÐÅÏ¢
|
};
|