2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* EventArgs.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX EventArgs class definition file *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _SYSTEM_EVENTARGS_
|
|
|
|
|
#define _SYSTEM_EVENTARGS_
|
|
|
|
|
|
2011-11-07 01:29:50 +00:00
|
|
|
|
#include "Object.h"
|
|
|
|
|
|
2010-12-04 16:14:34 +00:00
|
|
|
|
namespace System
|
|
|
|
|
{
|
2011-11-07 01:29:50 +00:00
|
|
|
|
// EventArgs is the base class for classes containing event data.
|
2012-09-28 20:36:02 +00:00
|
|
|
|
class EventArgs : public Object
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2012-09-28 20:36:02 +00:00
|
|
|
|
static const EventArgs* Empty;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
2012-03-29 22:02:43 +00:00
|
|
|
|
EventArgs()
|
|
|
|
|
{
|
|
|
|
|
}
|
2012-09-28 20:36:02 +00:00
|
|
|
|
virtual ~EventArgs() { }
|
|
|
|
|
|
|
|
|
|
int GetType() const;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_SYSTEM_EVENTARGS_
|