blob: f3906fd477e9d754b82e9bb2992dd097e9c13d3d [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
13void WireFormat::encodeName(Name &name, vector<unsigned char> &output)
14{
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
22void WireFormat::encodeInterest(Interest &interest, vector<unsigned char> &output)
23{
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}