blob: 3217fe10f05a32c9b73b5a7bc610e6d9073b12f9 [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
31}