2013-07-12 21:30:13 +02:00
|
|
|
/*****************************************************************************
|
2013-08-20 11:14:55 +02:00
|
|
|
* EventArgs.h *
|
2013-07-12 21:30:13 +02:00
|
|
|
* *
|
2013-08-20 11:14:55 +02:00
|
|
|
* System::EventArgs class definition file *
|
2013-07-12 21:30:13 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-05-05 18:18:41 +02:00
|
|
|
#ifndef _SYSTEM_EVENTARGS_
|
|
|
|
#define _SYSTEM_EVENTARGS_
|
|
|
|
|
|
|
|
#include "Object.h"
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
2013-07-12 21:30:13 +02:00
|
|
|
/**
|
|
|
|
* EventArgs is the base class for classes containing event data.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class EventArgs : public Object
|
|
|
|
{
|
|
|
|
public:
|
2013-08-20 11:14:55 +02:00
|
|
|
static EventArgs * const Empty;
|
2013-05-05 18:18:41 +02:00
|
|
|
|
|
|
|
EventArgs();
|
|
|
|
virtual ~EventArgs() { }
|
|
|
|
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_SYSTEM_EVENTARGS_
|