blob: 4b6b1416156312224f2d2d74fe3ef86fa08a0d21 [file] [log] [blame]
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology
9 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080024
25#ifndef NFD_COMMON_HPP
26#define NFD_COMMON_HPP
27
Junxiao Shi61c5ef32014-01-24 20:59:30 -070028#include "config.hpp"
29
Junxiao Shi88884492014-02-15 15:57:43 -070030#ifdef WITH_TESTS
31#define VIRTUAL_WITH_TESTS virtual
32#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
33#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
34#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
35#else
36#define VIRTUAL_WITH_TESTS
37#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
38#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
39#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
40#endif
41
Alexander Afanasyev8552a382014-05-15 20:13:42 -070042#include <list>
43#include <set>
Junxiao Shi651b75e2014-07-17 20:15:09 -070044#include <queue>
Alexander Afanasyev8552a382014-05-15 20:13:42 -070045#include <vector>
46
Alexander Afanasyev4a771362014-04-24 21:29:33 -070047#include <ndn-cxx/common.hpp>
48#include <ndn-cxx/interest.hpp>
49#include <ndn-cxx/data.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080050
Alexander Afanasyev8552a382014-05-15 20:13:42 -070051#include <boost/algorithm/string.hpp>
52#include <boost/asio.hpp>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080053#include <boost/assert.hpp>
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060054#include <boost/lexical_cast.hpp>
Davide Pesavento52a18f92014-04-10 00:55:01 +020055#include <boost/noncopyable.hpp>
Alexander Afanasyev8552a382014-05-15 20:13:42 -070056#include <boost/property_tree/ptree.hpp>
Davide Pesavento52a18f92014-04-10 00:55:01 +020057#include <boost/scoped_ptr.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080058
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080059namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080060
61using boost::noncopyable;
Davide Pesavento52a18f92014-04-10 00:55:01 +020062using boost::scoped_ptr;
63
64using ndn::shared_ptr;
65using ndn::weak_ptr;
66using ndn::enable_shared_from_this;
67using ndn::make_shared;
68using ndn::static_pointer_cast;
69using ndn::dynamic_pointer_cast;
70using ndn::const_pointer_cast;
71using ndn::function;
72using ndn::bind;
Alexander Afanasyevf6980282014-05-13 18:28:40 -070073using ndn::ref;
74using ndn::cref;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080075
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080076using ndn::Interest;
77using ndn::Data;
78using ndn::Name;
79using ndn::Exclude;
80using ndn::Block;
Davide Pesavento52a18f92014-04-10 00:55:01 +020081
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080082namespace tlv {
83using namespace ndn::Tlv;
84}
85
Davide Pesavento52a18f92014-04-10 00:55:01 +020086namespace name = ndn::name;
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070087namespace time = ndn::time;
88
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080089} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080090
91#endif // NFD_COMMON_HPP