IBR-DTNSuite 0.6

daemon/src/core/Event.cpp

Go to the documentation of this file.
00001 /*
00002  * Event.cpp
00003  *
00004  *  Created on: 16.02.2010
00005  *      Author: morgenro
00006  */
00007 
00008 #include "core/Event.h"
00009 #include "core/EventSwitch.h"
00010 
00011 namespace dtn
00012 {
00013         namespace core
00014         {
00015                 Event::~Event() {};
00016 
00017                 void Event::raiseEvent(Event *evt)
00018                 {
00019                         // raise the new event
00020                         dtn::core::EventSwitch::raiseEvent( evt );
00021                 }
00022         }
00023 }