blob: 05553b63f40f1243a786f29b1299df699227dc40 [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
10#include <ndn-cpp-dev/interest.hpp>
11#include <ndn-cpp-dev/data.hpp>
12
13#include <boost/utility.hpp>
14#include <boost/shared_ptr.hpp>
15#include <boost/function.hpp>
16#include <boost/bind.hpp>
17
18#include <vector>
19
20namespace ndn {
21
22using boost::noncopyable;
23using boost::shared_ptr;
24using boost::make_shared;
25using boost::function;
26using boost::bind;
27
28} // namespace ndn
29
30#endif // NFD_COMMON_HPP