Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 1 | /* -*- 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 Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 10 | #include "config.hpp" |
| 11 | |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 12 | #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 Shi | c1e1236 | 2014-01-24 20:03:26 -0700 | [diff] [blame] | 19 | #include <boost/ref.hpp> |
Alexander Afanasyev | 920af2f | 2014-01-25 22:56:11 -0800 | [diff] [blame] | 20 | #include <boost/asio.hpp> |
| 21 | #include <boost/assert.hpp> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 22 | |
| 23 | #include <vector> |
Junxiao Shi | c1e1236 | 2014-01-24 20:03:26 -0700 | [diff] [blame] | 24 | #include <list> |
Alexander Afanasyev | 920af2f | 2014-01-25 22:56:11 -0800 | [diff] [blame] | 25 | #include <set> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 26 | |
| 27 | namespace ndn { |
| 28 | |
| 29 | using boost::noncopyable; |
| 30 | using boost::shared_ptr; |
| 31 | using boost::make_shared; |
| 32 | using boost::function; |
| 33 | using boost::bind; |
| 34 | |
| 35 | } // namespace ndn |
| 36 | |
| 37 | #endif // NFD_COMMON_HPP |