blob: b5203c3d8d5920485b542515983b5c7288868261 [file] [log] [blame]
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NFD_COMMON_HPP
8#define NFD_COMMON_HPP
9
Junxiao Shi61c5ef32014-01-24 20:59:30 -070010#include "config.hpp"
11
Junxiao Shi88884492014-02-15 15:57:43 -070012#ifdef WITH_TESTS
13#define VIRTUAL_WITH_TESTS virtual
14#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
15#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
16#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
17#else
18#define VIRTUAL_WITH_TESTS
19#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
20#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
21#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
22#endif
23
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080024#include <ndn-cpp-dev/interest.hpp>
25#include <ndn-cpp-dev/data.hpp>
26
27#include <boost/utility.hpp>
28#include <boost/shared_ptr.hpp>
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080029#include <boost/enable_shared_from_this.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080030#include <boost/function.hpp>
31#include <boost/bind.hpp>
Junxiao Shic1e12362014-01-24 20:03:26 -070032#include <boost/ref.hpp>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080033#include <boost/asio.hpp>
34#include <boost/assert.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080035
36#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070037#include <list>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080038#include <set>
Steve DiBenedettobb75b552014-02-08 12:12:11 -070039#include <sstream>
40#include <istream>
41#include <fstream>
Junxiao Shidbe71732014-02-21 22:23:28 -070042#include <algorithm>
43#include <numeric>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080044
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080045#include "core/logger.hpp"
46
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080047namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080048
49using boost::noncopyable;
50using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080051using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080052using boost::make_shared;
Junxiao Shie5e2fce2014-02-10 20:01:53 -070053using boost::static_pointer_cast;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080054using boost::dynamic_pointer_cast;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080055using boost::function;
56using boost::bind;
57
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080058using ndn::Interest;
59using ndn::Data;
60using ndn::Name;
61using ndn::Exclude;
62using ndn::Block;
63namespace tlv {
64using namespace ndn::Tlv;
65}
66
67} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080068
69#endif // NFD_COMMON_HPP