blob: 3d1a53aa8852631ba244d4d9fc7d1ad5a191719a [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
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080012#include <ndn-cpp-dev/interest.hpp>
13#include <ndn-cpp-dev/data.hpp>
14
15#include <boost/utility.hpp>
16#include <boost/shared_ptr.hpp>
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080017#include <boost/enable_shared_from_this.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080018#include <boost/function.hpp>
19#include <boost/bind.hpp>
Junxiao Shic1e12362014-01-24 20:03:26 -070020#include <boost/ref.hpp>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080021#include <boost/asio.hpp>
22#include <boost/assert.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080023
24#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070025#include <list>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080026#include <set>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080027
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080028#include "core/logger.hpp"
29
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080030namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080031
32using boost::noncopyable;
33using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080034using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080035using boost::make_shared;
Junxiao Shie5e2fce2014-02-10 20:01:53 -070036using boost::static_pointer_cast;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080037using boost::function;
38using boost::bind;
39
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080040using ndn::Interest;
41using ndn::Data;
42using ndn::Name;
43using ndn::Exclude;
44using ndn::Block;
45namespace tlv {
46using namespace ndn::Tlv;
47}
48
49} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080050
51#endif // NFD_COMMON_HPP