blob: 4a9914c85d186d20c4516eea815af1722a1bc2ce [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 Afanasyev19508852014-01-29 01:01:51 -080063using std::make_shared;
64using std::enable_shared_from_this;
65
Alexander Afanasyev15151312014-02-16 00:53:51 -080066using std::static_pointer_cast;
67using std::dynamic_pointer_cast;
68using std::const_pointer_cast;
69
Alexander Afanasyev19508852014-01-29 01:01:51 -080070using std::function;
71using std::bind;
Alexander Afanasyevb67090a2014-04-29 22:31:01 -070072using std::placeholders::_1;
73using std::placeholders::_2;
74using std::placeholders::_3;
75using std::placeholders::_4;
76using std::placeholders::_5;
77using std::placeholders::_6;
78using std::placeholders::_7;
79using std::placeholders::_8;
80using std::placeholders::_9;
81
82using std::ref;
83using std::cref;
Alexander Afanasyev19508852014-01-29 01:01:51 -080084
85} // namespace ndn
86
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080087
Alexander Afanasyevd409d592014-01-28 18:36:38 -080088#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080089
Jeff Thompson571f3522013-07-07 22:39:31 -070090#include <boost/shared_ptr.hpp>
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070091#include <boost/weak_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -080092#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070093#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080094
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080095#include <boost/function.hpp>
96#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -080097
98namespace ndn {
99
100namespace ptr_lib = boost;
101namespace func_lib = boost;
102
103using boost::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700104using boost::weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800105using boost::make_shared;
106using boost::enable_shared_from_this;
107
Alexander Afanasyev15151312014-02-16 00:53:51 -0800108using boost::static_pointer_cast;
109using boost::dynamic_pointer_cast;
110using boost::const_pointer_cast;
111
Alexander Afanasyev19508852014-01-29 01:01:51 -0800112using boost::function;
113using boost::bind;
114
Alexander Afanasyevb67090a2014-04-29 22:31:01 -0700115using boost::ref;
116using boost::cref;
117
Alexander Afanasyev19508852014-01-29 01:01:51 -0800118} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800119
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700120#endif // NDN_CXX_HAVE_CXX11
Jeff Thompsona28eed82013-08-22 16:21:10 -0700121
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700122#include <boost/utility.hpp>
123
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700124namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700125
Alexander Afanasyev233750e2014-02-16 00:50:07 -0800126using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800127
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700128}
129
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700130#endif // NDN_COMMON_HPP