blob: f308e3ac5d57584066e858889e5e4edbb5b8584a [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
27#ifdef WITH_TESTS
28#define VIRTUAL_WITH_TESTS virtual
29#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
30#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
31#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
32#else
33#define VIRTUAL_WITH_TESTS
34#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
35#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
36#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
37#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
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;
73using ndn::ref;
74using ndn::cref;
75
76using ndn::Interest;
77using ndn::Data;
78using ndn::Name;
79using ndn::Exclude;
80using ndn::Block;
81
82namespace tlv {
83using namespace ndn::Tlv;
84}
85
86namespace name = ndn::name;
87namespace time = ndn::time;
88
89} // namespace nsl
90
91#endif // NSL_COMMON_HPP