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 ~EchoWorker() {}; 00025 00026 TransmitReport callbackBundleReceived(const Bundle &b); 00027 private: 00028 string m_localuri; 00029 }; 00030 } 00031 } 00032 00033 #endif /*ECHOWORKER_H_*/
1.5.6