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> |
| 19 | |
| 20 | #include <vector> |
| 21 | |
| 22 | namespace ndn { |
| 23 | |
| 24 | using boost::noncopyable; |
| 25 | using boost::shared_ptr; |
| 26 | using boost::make_shared; |
| 27 | using boost::function; |
| 28 | using boost::bind; |
| 29 | |
| 30 | } // namespace ndn |
| 31 | |
| 32 | #endif // NFD_COMMON_HPP |