#pragma once
|
#include "MBTNXXXAttr.h"
|
#include "MBTNXXXObj.h"
|
|
class CMBFireLstData;
|
typedef vector<CMBFireLstData*> CMBFireLstDataVector;
|
|
class AFX_EXT_CLASS CMBFireLstData
|
{
|
public:
|
CMBFireLstData(void);
|
~CMBFireLstData(void);
|
private:
|
CMBTNXXXAttrIntMap m_map;
|
// µ±Ç°Ëù±ØµÄ¶ÔÏó
|
CMBTNXXXObj *m_pObj;
|
public:
|
CString m_strObjID;
|
CString m_strMID;
|
public:
|
void SetTNXXXObj(CMBTNXXXObj *pObj);
|
CMBTNXXXObj *GetTNXXXObj();
|
public:
|
bool RemoveAll();
|
bool Add( int nIndex,CMBTNXXXAttr *pTNXXXAttr );
|
void GetMap( CMBTNXXXAttrIntMap &map );
|
CMBTNXXXAttr *Get( int nIndex );
|
CMBTNXXXAttr *GetAttr( CString strName );
|
};
|