blob: a74b9108f8d5439bca000eb2fb9b531ed6912e66 [file] [log] [blame]
Junxiao Shif7191242015-03-19 05:53:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, 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 * The University of Memphis.
10 *
11 * This file is part of ndn-tools (Named Data Networking Tools).
12 * 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
29#include <cinttypes>
30#include <cstddef>
31
32#include <iostream>
33#include <list>
34#include <map>
35#include <set>
36#include <unordered_map>
37#include <unordered_set>
38#include <vector>
39
40#include <boost/asio.hpp>
41#include <boost/assert.hpp>
42#include <boost/lexical_cast.hpp>
43#include <boost/noncopyable.hpp>
44#include <boost/program_options/options_description.hpp>
45#include <boost/program_options/variables_map.hpp>
46#include <boost/program_options/parsers.hpp>
47
48#include <ndn-cxx/data.hpp>
49#include <ndn-cxx/face.hpp>
50#include <ndn-cxx/interest.hpp>
51#include <ndn-cxx/security/key-chain.hpp>
52
53namespace ndn {
54
55using std::size_t;
56
57using boost::noncopyable;
58
59
60} // namespace
61
62#endif // NDN_TOOLS_CORE_COMMON_HPP