blob: d87a0673f39a8960bdda6196fabdac0ae0974270 [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 Afanasyevb927a3a2014-01-24 10:41:47 -080020
21#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070022#include <list>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080023
24namespace ndn {
25
26using boost::noncopyable;
27using boost::shared_ptr;
28using boost::make_shared;
29using boost::function;
30using boost::bind;
31
32} // namespace ndn
33
34#endif // NFD_COMMON_HPP