IBR-DTNSuite  0.8
daemon/src/EchoWorker.h
Go to the documentation of this file.
00001 #ifndef ECHOWORKER_H_
00002 #define ECHOWORKER_H_
00003 
00004 #include "core/AbstractWorker.h"
00005 
00006 using namespace dtn::core;
00007 
00008 namespace dtn
00009 {
00010         namespace daemon
00011         {
00020                 class EchoWorker : public AbstractWorker
00021                 {
00022                 public:
00023                         EchoWorker();
00024                         virtual ~EchoWorker() {};
00025 
00026                         void callbackBundleReceived(const Bundle &b);
00027                 };
00028         }
00029 }
00030 
00031 #endif /*ECHOWORKER_H_*/