blob: 01a30c4a7b463f474a084e37d1aea4df5027576f [file] [log] [blame]
Junxiao Shif7191242015-03-19 05:53:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Andrea Tosatto672b9a72016-01-05 16:18:20 +01003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shif7191242015-03-19 05:53:41 -07004 * 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 * The University of Memphis.
10 *
Junxiao Shi1688ded2015-03-29 10:09:26 -070011 * This file is part of ndn-tools (Named Data Networking Essential Tools).
Junxiao Shif7191242015-03-19 05:53:41 -070012 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
13 *
14 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NDN_TOOLS_CORE_COMMON_HPP
27#define NDN_TOOLS_CORE_COMMON_HPP
28
Junxiao Shi2713a3b2015-06-22 16:19:05 -070029#ifdef WITH_TESTS
30#define VIRTUAL_WITH_TESTS virtual
31#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
32#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
33#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
34#else
35#define VIRTUAL_WITH_TESTS
36#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
37#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
38#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
39#endif
40
Junxiao Shif7191242015-03-19 05:53:41 -070041#include <cinttypes>
42#include <cstddef>
43
44#include <iostream>
45#include <list>
46#include <map>
47#include <set>
48#include <unordered_map>
49#include <unordered_set>
50#include <vector>
51
52#include <boost/asio.hpp>
53#include <boost/assert.hpp>
54#include <boost/lexical_cast.hpp>
55#include <boost/noncopyable.hpp>
56#include <boost/program_options/options_description.hpp>
57#include <boost/program_options/variables_map.hpp>
58#include <boost/program_options/parsers.hpp>
59
60#include <ndn-cxx/data.hpp>
61#include <ndn-cxx/face.hpp>
62#include <ndn-cxx/interest.hpp>
63#include <ndn-cxx/security/key-chain.hpp>
Eric Newberry38146c52015-06-22 15:11:30 -070064#include <ndn-cxx/security/signing-helpers.hpp>
65#include <ndn-cxx/security/signing-info.hpp>
Andrea Tosatto672b9a72016-01-05 16:18:20 +010066#include <ndn-cxx/util/backports.hpp>
Eric Newberry4164b8e2015-04-23 17:29:18 -070067#include <ndn-cxx/util/scheduler.hpp>
Alexander Afanasyev1e7a7b22015-08-26 15:35:26 -070068#include <ndn-cxx/util/scheduler-scoped-event-id.hpp>
Eric Newberry4164b8e2015-04-23 17:29:18 -070069#include <ndn-cxx/util/signal.hpp>
Junxiao Shif7191242015-03-19 05:53:41 -070070
71namespace ndn {
72
73using std::size_t;
74
75using boost::noncopyable;
76
Eric Newberry4164b8e2015-04-23 17:29:18 -070077namespace signal = util::signal;
78namespace scheduler = util::scheduler;
79
Junxiao Shif7191242015-03-19 05:53:41 -070080
Junxiao Shi1753afb2015-04-17 20:59:50 -070081} // namespace ndn
Junxiao Shif7191242015-03-19 05:53:41 -070082
83#endif // NDN_TOOLS_CORE_COMMON_HPP