blob: 13203cca79327b1139f9480801ea6d13b274456b [file] [log] [blame]
Yingdi Yuc9843cf2014-08-04 17:52:19 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014, Regents of the University of California
4 *
5 * This file is part of NSL (NDN Signature Logger).
6 * See AUTHORS.md for complete list of NSL authors and contributors.
7 *
8 * NSL is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NSL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NSL, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * \author Yingdi Yu <yingdi@cs.ucla.edu>
20 */
21
22#ifndef NSL_COMMON_HPP
23#define NSL_COMMON_HPP
24
25#include "config.hpp"
26
Yingdi Yu0c3e5912015-03-17 14:22:38 -070027#ifdef NSL_HAVE_TESTS
28#define NSL_VIRTUAL_WITH_TESTS virtual
29#define NSL_PUBLIC_WITH_TESTS_ELSE_PROTECTED public
30#define NSL_PUBLIC_WITH_TESTS_ELSE_PRIVATE public
31#define NSL_PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
Yingdi Yuc9843cf2014-08-04 17:52:19 -070032#else
Yingdi Yu0c3e5912015-03-17 14:22:38 -070033#define NSL_VIRTUAL_WITH_TESTS
34#define NSL_PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
35#define NSL_PUBLIC_WITH_TESTS_ELSE_PRIVATE private
36#define NSL_PROTECTED_WITH_TESTS_ELSE_PRIVATE private
Yingdi Yuc9843cf2014-08-04 17:52:19 -070037#endif
38
39#include <cstddef>
40#include <list>
41#include <set>
42#include <queue>
43#include <vector>
44
45#include <ndn-cxx/common.hpp>
46#include <ndn-cxx/interest.hpp>
47#include <ndn-cxx/data.hpp>
48
49#include <boost/algorithm/string.hpp>
50#include <boost/asio.hpp>
51#include <boost/assert.hpp>
52#include <boost/lexical_cast.hpp>
53#include <boost/noncopyable.hpp>
54#include <boost/property_tree/ptree.hpp>
55#include <boost/scoped_ptr.hpp>
56
57namespace nsl {
58
59using std::size_t;
60
61using boost::noncopyable;
62using boost::scoped_ptr;
63
Yingdi Yu0c3e5912015-03-17 14:22:38 -070064using std::shared_ptr;
65using std::weak_ptr;
66using std::enable_shared_from_this;
67using std::make_shared;
68using std::static_pointer_cast;
69using std::dynamic_pointer_cast;
70using std::const_pointer_cast;
71using std::function;
72using std::bind;
73using std::ref;
74using std::cref;
Yingdi Yuc9843cf2014-08-04 17:52:19 -070075
76using ndn::Interest;
77using ndn::Data;
78using ndn::Name;
79using ndn::Exclude;
80using ndn::Block;
Yingdi Yu0c3e5912015-03-17 14:22:38 -070081using ndn::Signature;
82using ndn::KeyLocator;
Yingdi Yuc9843cf2014-08-04 17:52:19 -070083
84namespace tlv {
Yingdi Yu0c3e5912015-03-17 14:22:38 -070085using namespace ndn::tlv;
Yingdi Yuc9843cf2014-08-04 17:52:19 -070086}
87
88namespace name = ndn::name;
89namespace time = ndn::time;
90
91} // namespace nsl
92
93#endif // NSL_COMMON_HPP