00001
00002
00003
00004
00005
00006
00007
00008 #ifndef METABUNDLE_CPP_
00009 #define METABUNDLE_CPP_
00010
00011 #include "ibrdtn/data/MetaBundle.h"
00012
00013 namespace dtn
00014 {
00015 namespace data
00016 {
00017 MetaBundle::MetaBundle(const dtn::data::Bundle &b)
00018 : BundleID(b), lifetime(b._lifetime), destination(b._destination), reportto(b._reportto),
00019 custodian(b._custodian), appdatalength(b._appdatalength), procflags(b._procflags)
00020 {
00021 }
00022
00023 MetaBundle::~MetaBundle()
00024 {}
00025 }
00026 }
00027
00028 #endif