blob: a35addbb9f2e34a93bb17c547045cf1eeeef3c94 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Jeff Thompson571f3522013-07-07 22:39:31 -070020 */
21
22#ifndef NDN_COMMON_HPP
23#define NDN_COMMON_HPP
24
Alexander Afanasyev766cea72014-04-24 19:16:42 -070025#include "ndn-cxx-config.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070026
Alexander Afanasyevd409d592014-01-28 18:36:38 -080027#include <stdint.h>
Alexander Afanasyevd409d592014-01-28 18:36:38 -080028#include <stddef.h>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080029#include <unistd.h>
30
Steve DiBenedettoc145d492014-03-11 16:35:45 -060031#if defined(__GNUC__) || defined(__clang__)
32#define DEPRECATED(func) func __attribute__ ((deprecated))
33#elif defined(_MSC_VER)
34#define DEPRECATED(func) __declspec(deprecated) func
35#else
36#pragma message("DEPRECATED not implemented")
37#define DEPRECATED(func) func
38#endif
39
Alexander Afanasyev766cea72014-04-24 19:16:42 -070040#ifdef NDN_CXX_HAVE_CXX11
Alexander Afanasyev472fa022014-01-07 13:30:49 -080041
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070042#if defined(__GNUC__)
43# if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070044# error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070045# endif // !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
46#endif // defined(__GNUC__)
47
48#if defined(__clang__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070049# error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070050#endif // defined(__clang__) && (__cplusplus < 201103L)
51
Alexander Afanasyev472fa022014-01-07 13:30:49 -080052
Jeff Thompson571f3522013-07-07 22:39:31 -070053#include <memory>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080054#include <functional>
Alexander Afanasyev19508852014-01-29 01:01:51 -080055
56namespace ndn {
57
58namespace ptr_lib = std;
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080059namespace func_lib = std;
60
Alexander Afanasyev19508852014-01-29 01:01:51 -080061using std::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070062using std::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -070063using std::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -080064using std::make_shared;
65using std::enable_shared_from_this;
66
Alexander Afanasyev15151312014-02-16 00:53:51 -080067using std::static_pointer_cast;
68using std::dynamic_pointer_cast;
69using std::const_pointer_cast;
70
Alexander Afanasyev19508852014-01-29 01:01:51 -080071using std::function;
72using std::bind;
Alexander Afanasyevb67090a2014-04-29 22:31:01 -070073using std::placeholders::_1;
74using std::placeholders::_2;
75using std::placeholders::_3;
76using std::placeholders::_4;
77using std::placeholders::_5;
78using std::placeholders::_6;
79using std::placeholders::_7;
80using std::placeholders::_8;
81using std::placeholders::_9;
82
83using std::ref;
84using std::cref;
Alexander Afanasyev19508852014-01-29 01:01:51 -080085
86} // namespace ndn
87
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080088
Alexander Afanasyevd409d592014-01-28 18:36:38 -080089#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080090
Jeff Thompson571f3522013-07-07 22:39:31 -070091#include <boost/shared_ptr.hpp>
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070092#include <boost/weak_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -080093#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070094#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080095
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080096#include <boost/function.hpp>
97#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -080098
99namespace ndn {
100
101namespace ptr_lib = boost;
102namespace func_lib = boost;
103
104using boost::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700105using boost::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700106using boost::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800107using boost::make_shared;
108using boost::enable_shared_from_this;
109
Alexander Afanasyev15151312014-02-16 00:53:51 -0800110using boost::static_pointer_cast;
111using boost::dynamic_pointer_cast;
112using boost::const_pointer_cast;
113
Alexander Afanasyev19508852014-01-29 01:01:51 -0800114using boost::function;
115using boost::bind;
116
Alexander Afanasyevb67090a2014-04-29 22:31:01 -0700117using boost::ref;
118using boost::cref;
119
Alexander Afanasyev19508852014-01-29 01:01:51 -0800120} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800121
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700122#endif // NDN_CXX_HAVE_CXX11
Jeff Thompsona28eed82013-08-22 16:21:10 -0700123
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700124#include <boost/utility.hpp>
125
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700126namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700127
Alexander Afanasyev233750e2014-02-16 00:50:07 -0800128using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800129
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700130}
131
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700132#endif // NDN_COMMON_HPP