Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 6 | #ifndef NDN_BINARYXMLWIREFORMAT_HPP |
| 7 | #define NDN_BINARYXMLWIREFORMAT_HPP |
| 8 | |
| 9 | #include "WireFormat.hpp" |
| 10 | |
| 11 | namespace ndn { |
| 12 | |
| 13 | class BinaryXMLWireFormat : public WireFormat { |
| 14 | public: |
Jeff Thompson | d345a5b | 2013-07-08 16:18:23 -0700 | [diff] [blame] | 15 | virtual void encodeName(const Name &name, std::vector<unsigned char> &output); |
Jeff Thompson | 4238071 | 2013-06-28 10:59:33 -0700 | [diff] [blame] | 16 | virtual void decodeName(Name &name, const unsigned char *input, unsigned int inputLength); |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 17 | |
Jeff Thompson | d345a5b | 2013-07-08 16:18:23 -0700 | [diff] [blame] | 18 | virtual void encodeInterest(const Interest &interest, std::vector<unsigned char> &output); |
Jeff Thompson | 7c30eda | 2013-07-03 18:37:07 -0700 | [diff] [blame] | 19 | virtual void decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 20 | |
| 21 | virtual void encodeContentObject(const ContentObject &contentObject, std::vector<unsigned char> &output); |
| 22 | virtual void decodeContentObject(ContentObject &contentObject, const unsigned char *input, unsigned int inputLength); |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 23 | |
| 24 | static BinaryXMLWireFormat &instance() { return instance_; } |
| 25 | |
| 26 | private: |
| 27 | static BinaryXMLWireFormat instance_; |
| 28 | }; |
| 29 | |
| 30 | } |
| 31 | |
| 32 | #endif |
| 33 | |