blob: f3906fd477e9d754b82e9bb2992dd097e9c13d3d [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#include <stdexcept>
#include "WireFormat.hpp"
using namespace std;
namespace ndn {
void WireFormat::encodeName(Name &name, vector<unsigned char> &output)
{
throw logic_error("unimplemented");
}
void WireFormat::decodeName(Name &name, const unsigned char *input, unsigned int inputLength)
{
throw logic_error("unimplemented");
}
void WireFormat::encodeInterest(Interest &interest, vector<unsigned char> &output)
{
throw logic_error("unimplemented");
}
void WireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength)
{
throw logic_error("unimplemented");
}
}