#pragma once
|
#include "stdafx.h"
|
#include "MBShareDocInfo.h"
|
|
/************************************************************************/
|
/* Îļþ¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBShareDocMgr
|
: public CMBBaseDocMgr
|
{
|
public:
|
CMBShareDocMgr(void);
|
~CMBShareDocMgr(void);
|
public:
|
virtual void Abst(){};
|
public:
|
bool AddDocInfo(CMBShareDocInfo *pDocInfo); // Ìí¼ÓÊý¾Ý
|
CMBShareDocInfo* GetDocInfo( CString strID ); // ²éÕÒ
|
bool RemoveAllDocInfo();
|
public:
|
bool ParseXml( CString &strXml,CString &strErrInfo ); // ½âÎöÀ´×Ô¼º·þÎñ¶Ë·µ»ØµÄÐÅÏ¢
|
};
|
|
|