blob: 650541eff19321b043bdae1280daf8b1eabf52a5 [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>
HYuana9b85752014-02-26 02:32:30 -060035#include <boost/functional/hash.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080036
37#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070038#include <list>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080039#include <set>
Steve DiBenedettobb75b552014-02-08 12:12:11 -070040#include <sstream>
41#include <istream>
42#include <fstream>
Junxiao Shidbe71732014-02-21 22:23:28 -070043#include <algorithm>
44#include <numeric>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080045
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080046#include "core/logger.hpp"
47
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080048namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080049
50using boost::noncopyable;
51using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080052using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080053using boost::make_shared;
Junxiao Shie5e2fce2014-02-10 20:01:53 -070054using boost::static_pointer_cast;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080055using boost::dynamic_pointer_cast;
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070056using boost::weak_ptr;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080057using boost::function;
58using boost::bind;
59
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080060using ndn::Interest;
61using ndn::Data;
62using ndn::Name;
63using ndn::Exclude;
64using ndn::Block;
65namespace tlv {
66using namespace ndn::Tlv;
67}
68
69} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080070
71#endif // NFD_COMMON_HPP