commit | c2b7b1426c2c3ca07f4f1318eb5eb3f00de05d0d | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Sep 12 15:29:04 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Sep 12 15:29:04 2013 -0700 |
tree | 8c7bc8de9880ce00caed33cade8b85012388d306 | |
parent | d0be471fa490b4f3d7e5813bb2e67bca88648cae [diff] [blame] |
Change wire encoding to return a Blob.
diff --git a/ndn-cpp/interest.hpp b/ndn-cpp/interest.hpp index 50baaa4..bd7991f 100644 --- a/ndn-cpp/interest.hpp +++ b/ndn-cpp/interest.hpp
@@ -159,7 +159,7 @@ construct(); } - ptr_lib::shared_ptr<std::vector<unsigned char> > wireEncode(WireFormat& wireFormat = *WireFormat::getDefaultWireFormat()) const + Blob wireEncode(WireFormat& wireFormat = *WireFormat::getDefaultWireFormat()) const { return wireFormat.encodeInterest(*this); }