blob: 2c90c1b23e8c772ffa74290f275413ceb6589128 [file] [log] [blame]
/*
* Author: Jeff Thompson
*
* BSD license, See the LICENSE file for more information.
*/
#ifndef NDN_WIREFORMAT_HPP
#define NDN_WIREFORMAT_HPP
#include <vector>
namespace ndn {
class Name;
class Interest;
class WireFormat {
public:
virtual void encodeName(Name &name, std::vector<unsigned char> &output);
virtual void decodeName(Name &name, std::vector<unsigned char> &input);
virtual void encodeInterest(Interest &interest, std::vector<unsigned char> &output);
virtual void decodeInterest(Interest &interest, std::vector<unsigned char> &input);
// etc. for each type of object.
};
}
#endif