Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef FILEBUNDLE_H_
00009 #define FILEBUNDLE_H_
00010
00011 #include "ibrdtn/api/Bundle.h"
00012 #include <iostream>
00013
00014 namespace dtn
00015 {
00016 namespace api
00017 {
00022 class FileBundle : public dtn::api::Bundle
00023 {
00024 public:
00028
00029
00030 FileBundle(dtn::data::EID destination, string filename);
00031
00035 virtual ~FileBundle();
00036
00037 private:
00038
00039 std::string _filename;
00040 };
00041 }
00042 }
00043
00044 #endif