blob: 13573336baa1c547bb7fee3f07065441fe415651 [file] [log] [blame]
#ifndef CCNX_CONTENT_OBJECT_H
#define CCNX_CONTENT_OBJECT_H
#include "ccnx-wrapper.h"
#include "ccnx-common.h"
using namespace std;
namespace Ccnx {
struct MisformedContentObjectException : virtual boost::exception, virtual exception { };
class ParsedContentObject
{
public:
ParsedContentObject(const unsigned char *data, size_t len);
ParsedContentObject(const Bytes &bytes);
ParsedContentObject(const ParsedContentObject &other);
virtual ~ParsedContentObject();
Bytes
content() const;
string
name() const;
protected:
ccn_parsed_ContentObject m_pco;
ccn_indexbuf *m_comps;
Bytes m_bytes;
};
typedef boost::shared_ptr<ParsedContentObject> PcoPtr;
}
#endif // CCNX_CONTENT_OBJECT_H