blob: 9b50fda74ceb4c72e0c50c35043e8ac25f314e89 [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>
17#include <boost/function.hpp>
18#include <boost/bind.hpp>
Junxiao Shic1e12362014-01-24 20:03:26 -070019#include <boost/ref.hpp>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080020#include <boost/asio.hpp>
21#include <boost/assert.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080022
23#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070024#include <list>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080025#include <set>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080026
27namespace ndn {
28
29using boost::noncopyable;
30using boost::shared_ptr;
31using boost::make_shared;
32using boost::function;
33using boost::bind;
34
35} // namespace ndn
36
37#endif // NFD_COMMON_HPP