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