I should have commit when I knew what changes I made.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#ifndef _CGUIEVENT_HPP_
|
||||
#define _CGUIEVENT_HPP_
|
||||
|
||||
/*** Custom Header Files ***/
|
||||
#include "Enums.hpp"
|
||||
|
||||
/*** DLL Header File ***/
|
||||
#include "dllExport.h"
|
||||
|
||||
namespace GUIHelpers {
|
||||
class EXPORT_FROM_MYDLL cGUIEvent
|
||||
{
|
||||
public:
|
||||
cGUIEvent( const GUIHelpers::eEventType eventType );
|
||||
virtual ~cGUIEvent();
|
||||
|
||||
bool operator == ( const cGUIEvent& other );
|
||||
|
||||
/// Functions
|
||||
|
||||
/// Sets
|
||||
|
||||
/// Gets
|
||||
|
||||
private:
|
||||
/// Variables
|
||||
GUIHelpers::eEventType m_eventType;
|
||||
};/// END CLASS DEFINITION cGUIEvent
|
||||
}/// END NAMESPACE DEFINITION GUIEngine
|
||||
#endif/// END IFNDEF _CGUIEVENT_HPP_
|
||||
Reference in New Issue
Block a user