blob: 7e784a3de1d5421c7bec3240fb116ffa1e10d815 [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 {
12
Jeff Thompsond345a5b2013-07-08 16:18:23 -070013void WireFormat::encodeName(const Name &name, vector<unsigned char> &output)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070014{
15 throw logic_error("unimplemented");
16}
Jeff Thompson42380712013-06-28 10:59:33 -070017void WireFormat::decodeName(Name &name, const unsigned char *input, unsigned int inputLength)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070018{
19 throw logic_error("unimplemented");
20}
21
Jeff Thompsond345a5b2013-07-08 16:18:23 -070022void WireFormat::encodeInterest(const Interest &interest, vector<unsigned char> &output)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070023{
24 throw logic_error("unimplemented");
25}
Jeff Thompson42380712013-06-28 10:59:33 -070026void WireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070027{
28 throw logic_error("unimplemented");
29}
30
Jeff Thompson5cae5e52013-07-10 19:41:20 -070031void WireFormat::encodeContentObject(const ContentObject &contentObject, vector<unsigned char> &output)
32{
33 throw logic_error("unimplemented");
34}
35void WireFormat::decodeContentObject(ContentObject &contentObject, const unsigned char *input, unsigned int inputLength)
36{
37 throw logic_error("unimplemented");
38}
39
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070040}