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 | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef NDN_COMMON_HPP |
| 7 | #define NDN_COMMON_HPP |
| 8 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 9 | #include <vector> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 10 | #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> |
| 16 | namespace ndn { namespace ptr_lib = std; } |
| 17 | #elif HAVE_BOOST_SHARED_PTR |
| 18 | #include <boost/shared_ptr.hpp> |
| 19 | #include <boost/make_shared.hpp> |
| 20 | namespace ndn { namespace ptr_lib = boost; } |
| 21 | #else |
| 22 | #error "Can't find shared_ptr in std or boost" |
| 23 | #endif |
| 24 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 25 | namespace 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 | */ |
| 33 | static 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 Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 42 | #endif |