00001 #ifndef DUMMYCONVERGENCELAYER_H_ 00002 #define DUMMYCONVERGENCELAYER_H_ 00003 00004 #include "ConvergenceLayer.h" 00005 00006 namespace dtn 00007 { 00008 namespace core 00009 { 00014 class DummyConvergenceLayer : public ConvergenceLayer 00015 { 00016 public: 00017 DummyConvergenceLayer(string name); 00018 ~DummyConvergenceLayer(); 00019 00023 TransmitReport transmit(const Bundle &b); 00024 00028 TransmitReport transmit(const Bundle &b, const Node &node); 00029 00030 string getName(); 00031 00032 private: 00033 string m_name; 00034 }; 00035 } 00036 } 00037 00038 #endif /*DUMMYCONVERGENCELAYER_H_*/
1.5.6