blob: 457ac23dec1441eab1c8b7808d91e8f58f04c9fe [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07005 * See COPYING for copyright and distribution information.
Jeff Thompson571f3522013-07-07 22:39:31 -07006 */
7
8#ifndef NDN_COMMON_HPP
9#define NDN_COMMON_HPP
10
Alexander Afanasyev09c613f2014-01-29 00:23:58 -080011#include "ndn-cpp-config.h"
Alexander Afanasyevd409d592014-01-28 18:36:38 -080012#include <stdint.h>
13// TODO: Is stddef.h portable?
14#include <stddef.h>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080015#include <unistd.h>
16
17// Standard headers to precompile
Alexander Afanasyevd409d592014-01-28 18:36:38 -080018
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070019#include <vector>
Alexander Afanasyev19508852014-01-29 01:01:51 -080020#include <list>
21#include <set>
22#include <algorithm>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080023#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 Afanasyev233750e2014-02-16 00:50:07 -080033#include <boost/utility.hpp>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080034
35#include <boost/iostreams/detail/ios.hpp>
36#include <boost/iostreams/categories.hpp>
37#include <boost/iostreams/stream.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070038
Steve DiBenedettoc145d492014-03-11 16:35:45 -060039#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 Afanasyev0541cf42014-01-02 19:10:37 -080048#if NDN_CPP_HAVE_CXX11
Alexander Afanasyev472fa022014-01-07 13:30:49 -080049
50#if (__cplusplus < 201103L)
Yingdi Yu61ec2722014-01-20 14:22:32 -080051#error "NDN-CPP-DEV library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyev472fa022014-01-07 13:30:49 -080052#endif
53
Jeff Thompson571f3522013-07-07 22:39:31 -070054#include <memory>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080055#include <functional>
Alexander Afanasyev19508852014-01-29 01:01:51 -080056
57namespace ndn {
58
59namespace ptr_lib = std;
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080060namespace func_lib = std;
61
Alexander Afanasyev19508852014-01-29 01:01:51 -080062using std::shared_ptr;
63using 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;
72using std::placeholders; // _1, _2, ..
73
74} // namespace ndn
75
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080076
Alexander Afanasyevd409d592014-01-28 18:36:38 -080077#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080078
Jeff Thompson571f3522013-07-07 22:39:31 -070079#include <boost/shared_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -080080#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070081#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080082
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080083#include <boost/function.hpp>
84#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -080085
86namespace ndn {
87
88namespace ptr_lib = boost;
89namespace func_lib = boost;
90
91using boost::shared_ptr;
92using boost::make_shared;
93using boost::enable_shared_from_this;
94
Alexander Afanasyev15151312014-02-16 00:53:51 -080095using boost::static_pointer_cast;
96using boost::dynamic_pointer_cast;
97using boost::const_pointer_cast;
98
Alexander Afanasyev19508852014-01-29 01:01:51 -080099using boost::function;
100using boost::bind;
101
102} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800103
Jeff Thompsona28eed82013-08-22 16:21:10 -0700104#endif
105
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700106namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700107
Alexander Afanasyev233750e2014-02-16 00:50:07 -0800108using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800109
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700110}
111
Alexander Afanasyev809805d2014-02-17 17:20:33 -0800112#include "util/time.hpp"
113
Jeff Thompson571f3522013-07-07 22:39:31 -0700114#endif