blob: a98719d7675baecf0453de4ddce51bbdeeb72a91 [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
28namespace ndn {
29
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
37} // namespace ndn
38
39#endif // NFD_COMMON_HPP