blob: 1faba767b0a7d18dd7339b49d12b85e3badc6f35 [file] [log] [blame]
/*
* Author: Jeff Thompson
*
* BSD license, See the LICENSE file for more information.
*/
#ifndef NDN_NAME_HPP
#define NDN_NAME_HPP
#include <vector>
#include "common.h"
#include "encoding/BinaryXMLWireFormat.hpp"
namespace ndn {
class Name {
public:
Name();
Name(const char *uri);
void encode(std::vector<unsigned char> &output, WireFormat &wireFormat) {
wireFormat.encodeName(*this, output);
}
void encode(std::vector<unsigned char> &output) {
encode(output, BinaryXMLWireFormat::instance());
}
void decode(const unsigned char *input, unsigned int inputLength, WireFormat &wireFormat) {
wireFormat.decodeName(*this, input, inputLength);
}
void decode(const unsigned char *input, unsigned int inputLength) {
decode(input, inputLength, BinaryXMLWireFormat::instance());
}
private:
std::vector<std::vector<unsigned char> > components_;
};
}
#endif