blob: c377a6556190e447cb7a7421e8d44f693bcadccb [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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080028namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080029
30using boost::noncopyable;
31using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080032using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080033using boost::make_shared;
34using boost::function;
35using boost::bind;
36
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080037using ndn::Interest;
38using ndn::Data;
39using ndn::Name;
40using ndn::Exclude;
41using ndn::Block;
42namespace tlv {
43using namespace ndn::Tlv;
44}
45
46} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080047
48#endif // NFD_COMMON_HPP