#pragma once
|
#include "stdafx.h"
|
#include "MBLinkDocInfo.h"
|
|
/************************************************************************/
|
/* ¹ØÁªÎļþ¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBLinkDocMgr
|
: public CMBBaseLinkDocMgr
|
{
|
public:
|
CMBLinkDocMgr(void);
|
~CMBLinkDocMgr(void);
|
public:
|
virtual void Abst(){};
|
public:
|
bool AddLinkDocInfo(CMBLinkDocInfo *pLinkDocInfo); // Ìí¼ÓÊý¾Ý
|
CMBLinkDocInfo* GetLinkDocInfo( CString strID ); // ²éÕÒ
|
};
|
|
|