blob: 238ce9ce713bc3255f0520d71d1b1da94bc169cf [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07004 */
5
6#include <stdexcept>
7#include "WireFormat.hpp"
8
9using namespace std;
10
11namespace ndn {
Jeff Thompsonb0979fd2013-07-30 15:48:21 -070012ptr_lib::shared_ptr<vector<unsigned char> > WireFormat::encodeInterest(const Interest &interest)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070013{
14 throw logic_error("unimplemented");
15}
Jeff Thompson42380712013-06-28 10:59:33 -070016void WireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070017{
18 throw logic_error("unimplemented");
19}
20
Jeff Thompsonb0979fd2013-07-30 15:48:21 -070021ptr_lib::shared_ptr<vector<unsigned char> > WireFormat::encodeContentObject(const ContentObject &contentObject)
Jeff Thompson5cae5e52013-07-10 19:41:20 -070022{
23 throw logic_error("unimplemented");
24}
25void WireFormat::decodeContentObject(ContentObject &contentObject, const unsigned char *input, unsigned int inputLength)
26{
27 throw logic_error("unimplemented");
28}
29
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070030}