00001 #ifndef _IEVENT_H_ 00002 #define _IEVENT_H_ 00003 00004 #include "HashString.h" 00005 00006 class IEvent 00007 { 00008 public: 00009 IEvent() {} 00010 ~IEvent() {} 00011 00012 virtual HashString GetEventType() = 0; 00013 }; 00014 00015 #endif
1.5.9