00001 /* 00002 * EventReceiver.h 00003 * 00004 * Created on: 05.03.2009 00005 * Author: morgenro 00006 */ 00007 00008 #ifndef EVENTRECEIVER_H_ 00009 #define EVENTRECEIVER_H_ 00010 00011 namespace dtn 00012 { 00013 namespace core 00014 { 00015 class Event; 00016 00017 class EventReceiver 00018 { 00019 public: 00020 virtual void raiseEvent(const Event *evt) = 0; 00021 }; 00022 } 00023 } 00024 00025 #endif /* EVENTRECEIVER_H_ */
1.5.6