#pragma once
|
#include "MBSelUser.h"
|
|
/************************************************************************/
|
/* ÓÃÀ´×°ÔØÑ¡ÔñÈËÔ±¹ÜÀíÆ÷ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBSelUserMgr
|
{
|
public:
|
CMBSelUserMgr(void);
|
~CMBSelUserMgr(void);
|
private:
|
CMBSelUserMap m_map;
|
CMBSelUserVector m_vector;
|
public:
|
bool GetVector( CMBSelUserVector &vector ); // µÃµ½»ùÀàµÄÊý×é
|
bool Add(CMBSelUser *pUser); // Ìí¼ÓÊý¾Ý
|
CMBSelUser *Get( CString strLogin ); // ²éÕÒ
|
bool RemoveAll(); // ÒÆ³ý
|
bool Remove( CMBSelUser *pUser );
|
public:
|
int GetCount();
|
CString GetUsersXml();
|
public:
|
bool ParseShareXml( CString &strXml,CString &strErrInfo );
|
};
|