#ifndef __MBDATAUIEVENT_H_
|
#define __MBDATAUIEVENT_H_
|
#include "stdafx.h"
|
|
|
namespace SOUI{
|
|
|
class EventLoadArea : public TplEventArgs<EventLoadArea>
|
{
|
SOUI_CLASS_NAME(EventLoadArea,L"on_dataui_loadarea")
|
public:
|
EventLoadArea(SWindow *pSender):TplEventArgs<EventLoadArea>(pSender)
|
{
|
m_pAreaInfo = NULL;
|
}
|
enum{EventID=EVT_DATAUI_LOADAREA};
|
public:
|
CMBAreaInfo *m_pAreaInfo;
|
};
|
|
|
|
|
|
}
|
|
|
#endif // __MBDATAUIEVENT_H_
|