blob: 7394c033da53d293e3112f1bc52710bbb3f9b310 [file] [log] [blame]
#ifndef CCNX_COMMON_H
#define CCNX_COMMON_H
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/exception/all.hpp>
#include <boost/function.hpp>
#include <string>
#include <sstream>
#include <map>
#include <utility>
using namespace std;
namespace Ccnx {
typedef vector<unsigned char> Bytes;
void
readRaw(Bytes &bytes, const unsigned char *src, size_t len);
const unsigned char *
head(const Bytes &bytes);
} // Ccnx
#endif // CCNX_COMMON_H