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_
|
|
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// EventArgs is the base class for classes containing event data.
|
|
|
|
|
/// </summary>
|
2010-12-27 01:01:25 +00:00
|
|
|
|
class EventArgs
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static const EventArgs Empty;
|
|
|
|
|
|
|
|
|
|
EventArgs();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_SYSTEM_EVENTARGS_
|