blob: f9694f50d6c68d7967e33708d00960ee26115b8a [file] [log] [blame]
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#include <stdexcept>
8#include "WireFormat.hpp"
9
10using namespace std;
11
12namespace ndn {
13
14void WireFormat::encodeName(Name &name, vector<unsigned char> &output)
15{
16 throw logic_error("unimplemented");
17}
Jeff Thompson42380712013-06-28 10:59:33 -070018void WireFormat::decodeName(Name &name, const unsigned char *input, unsigned int inputLength)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070019{
20 throw logic_error("unimplemented");
21}
22
23void WireFormat::encodeInterest(Interest &interest, vector<unsigned char> &output)
24{
25 throw logic_error("unimplemented");
26}
Jeff Thompson42380712013-06-28 10:59:33 -070027void WireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength)
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070028{
29 throw logic_error("unimplemented");
30}
31
32}