blob: 5d4624192ff4096bc5e5d70265362bbdbeb21a2d [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 Thompsond345a5b2013-07-08 16:18:23 -070012void WireFormat::encodeInterest(const Interest &interest, vector<unsigned char> &output)
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 Thompson5cae5e52013-07-10 19:41:20 -070021void WireFormat::encodeContentObject(const ContentObject &contentObject, vector<unsigned char> &output)
22{
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}