Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 5 | * See COPYING for copyright and distribution information. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef NDN_COMMON_HPP |
| 9 | #define NDN_COMMON_HPP |
| 10 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 11 | #include "ndn-cpp-config.h" |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 12 | #include <stdint.h> |
| 13 | // TODO: Is stddef.h portable? |
| 14 | #include <stddef.h> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 15 | #include <unistd.h> |
| 16 | |
| 17 | // Standard headers to precompile |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 18 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 19 | #include <vector> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 20 | #include <list> |
| 21 | #include <set> |
| 22 | #include <algorithm> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 23 | #include <map> |
| 24 | #include <sstream> |
| 25 | #include <fstream> |
| 26 | #include <exception> |
| 27 | #include <map> |
| 28 | |
| 29 | // Other useful headers to precompile |
| 30 | #include <boost/lexical_cast.hpp> |
| 31 | #include <boost/asio.hpp> |
| 32 | #include <boost/date_time/posix_time/posix_time.hpp> |
Alexander Afanasyev | 233750e | 2014-02-16 00:50:07 -0800 | [diff] [blame] | 33 | #include <boost/utility.hpp> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 34 | |
| 35 | #include <boost/iostreams/detail/ios.hpp> |
| 36 | #include <boost/iostreams/categories.hpp> |
| 37 | #include <boost/iostreams/stream.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 38 | |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 39 | #if defined(__GNUC__) || defined(__clang__) |
| 40 | #define DEPRECATED(func) func __attribute__ ((deprecated)) |
| 41 | #elif defined(_MSC_VER) |
| 42 | #define DEPRECATED(func) __declspec(deprecated) func |
| 43 | #else |
| 44 | #pragma message("DEPRECATED not implemented") |
| 45 | #define DEPRECATED(func) func |
| 46 | #endif |
| 47 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 48 | #if NDN_CPP_HAVE_CXX11 |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 49 | |
| 50 | #if (__cplusplus < 201103L) |
Yingdi Yu | 61ec272 | 2014-01-20 14:22:32 -0800 | [diff] [blame] | 51 | #error "NDN-CPP-DEV library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled" |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 52 | #endif |
| 53 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 54 | #include <memory> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 55 | #include <functional> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 56 | |
| 57 | namespace ndn { |
| 58 | |
| 59 | namespace ptr_lib = std; |
Alexander Afanasyev | 8460afb | 2014-02-15 20:31:42 -0800 | [diff] [blame] | 60 | namespace func_lib = std; |
| 61 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 62 | using std::shared_ptr; |
| 63 | using std::make_shared; |
| 64 | using std::enable_shared_from_this; |
| 65 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 66 | using std::static_pointer_cast; |
| 67 | using std::dynamic_pointer_cast; |
| 68 | using std::const_pointer_cast; |
| 69 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 70 | using std::function; |
| 71 | using std::bind; |
| 72 | using std::placeholders; // _1, _2, .. |
| 73 | |
| 74 | } // namespace ndn |
| 75 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 76 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 77 | #else |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 78 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 79 | #include <boost/shared_ptr.hpp> |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 80 | #include <boost/enable_shared_from_this.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 81 | #include <boost/make_shared.hpp> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 82 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 83 | #include <boost/function.hpp> |
| 84 | #include <boost/bind.hpp> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 85 | |
| 86 | namespace ndn { |
| 87 | |
| 88 | namespace ptr_lib = boost; |
| 89 | namespace func_lib = boost; |
| 90 | |
| 91 | using boost::shared_ptr; |
| 92 | using boost::make_shared; |
| 93 | using boost::enable_shared_from_this; |
| 94 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 95 | using boost::static_pointer_cast; |
| 96 | using boost::dynamic_pointer_cast; |
| 97 | using boost::const_pointer_cast; |
| 98 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 99 | using boost::function; |
| 100 | using boost::bind; |
| 101 | |
| 102 | } // namespace ndn |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 103 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 104 | #endif |
| 105 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 106 | namespace ndn { |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 107 | |
Alexander Afanasyev | 233750e | 2014-02-16 00:50:07 -0800 | [diff] [blame] | 108 | using boost::noncopyable; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 109 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 112 | #include "util/time.hpp" |
| 113 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 114 | #endif |