IBR-DTNSuite  0.8
ibrdtn/ibrdtn/api/BLOBBundle.cpp
Go to the documentation of this file.
00001 /*
00002  * BLOBBundle.cpp
00003  *
00004  *  Created on: 25.01.2010
00005  *      Author: morgenro
00006  */
00007 
00008 #include "ibrdtn/config.h"
00009 #include "ibrdtn/api/BLOBBundle.h"
00010 
00011 namespace dtn
00012 {
00013         namespace api
00014         {
00015                 BLOBBundle::BLOBBundle(dtn::data::EID destination, ibrcommon::BLOB::Reference &ref) : Bundle(destination)
00016                 {
00017                         _b.push_back(ref);
00018                 }
00019 
00020                 BLOBBundle::~BLOBBundle()
00021                 {
00022                 }
00023         }
00024 }