blob: fc37c02c138f1a6485c1c3cf2dab9dc9cd1759cc [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>
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080017#include <boost/enable_shared_from_this.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080018#include <boost/function.hpp>
19#include <boost/bind.hpp>
Junxiao Shic1e12362014-01-24 20:03:26 -070020#include <boost/ref.hpp>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080021#include <boost/asio.hpp>
22#include <boost/assert.hpp>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080023
24#include <vector>
Junxiao Shic1e12362014-01-24 20:03:26 -070025#include <list>
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080026#include <set>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080027
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080028#include "core/logger.hpp"
29
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080030namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080031
32using boost::noncopyable;
33using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080034using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080035using boost::make_shared;
36using boost::function;
37using boost::bind;
38
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080039using ndn::Interest;
40using ndn::Data;
41using ndn::Name;
42using ndn::Exclude;
43using ndn::Block;
44namespace tlv {
45using namespace ndn::Tlv;
46}
47
48} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080049
50#endif // NFD_COMMON_HPP