Go to the documentation of this file.00001 #ifndef DEBUGGER_H_
00002 #define DEBUGGER_H_
00003
00004 #include "core/AbstractWorker.h"
00005
00006 using namespace dtn::data;
00007 using namespace dtn::core;
00008
00009 namespace dtn
00010 {
00011 namespace daemon
00012 {
00021 class Debugger : public AbstractWorker
00022 {
00023 public:
00024 Debugger()
00025 {
00026 AbstractWorker::initialize("/debugger", 1, true);
00027 };
00028 virtual ~Debugger() {};
00029
00030 void callbackBundleReceived(const Bundle &b);
00031 };
00032 }
00033 }
00034
00035 #endif