blob: f763d55852741b3c7eda8298fb9c88b8888dc1ba [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson571f3522013-07-07 22:39:31 -07004 */
5
6#ifndef NDN_COMMON_HPP
7#define NDN_COMMON_HPP
8
Jeff Thompson51dd5fd2013-07-10 19:27:18 -07009#include <vector>
Jeff Thompson571f3522013-07-07 22:39:31 -070010#include "../config.h"
11
12// Depending on where ./configure found shared_ptr, define the ptr_lib namespace.
13// We always use ndn::ptr_lib::shared_ptr.
14#if HAVE_STD_SHARED_PTR
15#include <memory>
16namespace ndn { namespace ptr_lib = std; }
17#elif HAVE_BOOST_SHARED_PTR
18#include <boost/shared_ptr.hpp>
19#include <boost/make_shared.hpp>
20namespace ndn { namespace ptr_lib = boost; }
21#else
22#error "Can't find shared_ptr in std or boost"
23#endif
24
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070025namespace ndn {
26
27/**
28 * Clear the vector and copy valueLength bytes from value.
29 * @param v the vector to copy to
30 * @param value the array of bytes, or 0 to not copy
31 * @param valueLength the length of value
32 */
33static inline void setVector(std::vector<unsigned char> &vec, const unsigned char *value, unsigned int valueLength)
34{
35 vec.clear();
36 if (value)
37 vec.insert(vec.begin(), value, value + valueLength);
38}
39
40}
41
Jeff Thompson571f3522013-07-07 22:39:31 -070042#endif