blob: 50555fcba6edf8b455ccae88c1d9f339bc00eb3a [file] [log] [blame]
Yingdi Yub20ae812014-08-15 11:20:19 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012-2014 University of California, Los Angeles
4 *
5 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
7 *
8 * ChronoSync 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, either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * ChronoSync 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 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
20 * @author Yingdi Yu <yingdi@cs.ucla.edu>
21 */
22
23#ifndef CHRONOSYNC_COMMON_HPP
24#define CHRONOSYNC_COMMON_HPP
25
26#include "config.hpp"
27
28#ifdef _TESTS
29#define VIRTUAL_WITH_TESTS virtual
30#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
31#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
32#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
33#else
34#define VIRTUAL_WITH_TESTS
35#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
36#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
37#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
38#endif
39
40#include <cstddef>
41#include <list>
42#include <set>
43#include <queue>
44#include <vector>
45
46#include <ndn-cxx/common.hpp>
47#include <ndn-cxx/interest.hpp>
48#include <ndn-cxx/data.hpp>
49
50#include <boost/algorithm/string.hpp>
51#include <boost/asio.hpp>
52#include <boost/assert.hpp>
53#include <boost/lexical_cast.hpp>
54#include <boost/noncopyable.hpp>
55#include <boost/property_tree/ptree.hpp>
56#include <boost/scoped_ptr.hpp>
57
58namespace chronosync {
59
60using std::size_t;
61
62using boost::noncopyable;
63using boost::scoped_ptr;
64
65using ndn::shared_ptr;
66using ndn::weak_ptr;
67using ndn::enable_shared_from_this;
68using ndn::make_shared;
69using ndn::static_pointer_cast;
70using ndn::dynamic_pointer_cast;
71using ndn::const_pointer_cast;
72using ndn::function;
73using ndn::bind;
74using ndn::ref;
75using ndn::cref;
76
77using ndn::Interest;
78using ndn::Data;
79using ndn::Name;
80using ndn::Exclude;
81using ndn::Block;
82
83namespace tlv {
84using namespace ndn::Tlv;
85}
86
87namespace name = ndn::name;
88namespace time = ndn::time;
89
90} // namespace chronosync
91
92#endif // CHRONOSYNC_COMMON_HPP