00001
00002
00003
00004
00005 #ifndef _EVENTPROCESSOR_H
00006 #define _EVENTPROCESSOR_H
00007
00008 #include "../YansCore/Event.h"
00009
00010 namespace YansCoreNS
00011 {
00015 class EventProcessor
00016 {
00017 public:
00020 explicit EventProcessor (void);
00021
00024 virtual ~EventProcessor (void);
00025
00030 virtual void ProcessEvent (YansCoreNS::Time time,
00031 boost::shared_ptr<YansCoreNS::Event const> event) = 0;
00032
00033 private:
00038 EventProcessor (EventProcessor const &);
00039 };
00040 }
00041
00042 #endif
00043