Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 10 | using namespace std; |
| 11 | |
| 12 | namespace ndn { |
| 13 | |
| 14 | void WireFormat::encodeName(Name &name, vector<unsigned char> &output) |
| 15 | { |
| 16 | throw logic_error("unimplemented"); |
| 17 | } |
| 18 | void WireFormat::decodeName(Name &name, vector<unsigned char> &input) |
| 19 | { |
| 20 | throw logic_error("unimplemented"); |
| 21 | } |
| 22 | |
| 23 | void WireFormat::encodeInterest(Interest &interest, vector<unsigned char> &output) |
| 24 | { |
| 25 | throw logic_error("unimplemented"); |
| 26 | } |
| 27 | void WireFormat::decodeInterest(Interest &interest, vector<unsigned char> &input) |
| 28 | { |
| 29 | throw logic_error("unimplemented"); |
| 30 | } |
| 31 | |
| 32 | } |