blob: 18a33c9c5698a33879d8c67b99e791fd43aed868 [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>
Steve DiBenedettobb75b552014-02-08 12:12:11 -070027#include <sstream>
28#include <istream>
29#include <fstream>
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080030
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080031#include "core/logger.hpp"
32
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080033namespace nfd {
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080034
35using boost::noncopyable;
36using boost::shared_ptr;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080037using boost::enable_shared_from_this;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080038using boost::make_shared;
Junxiao Shie5e2fce2014-02-10 20:01:53 -070039using boost::static_pointer_cast;
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080040using boost::function;
41using boost::bind;
42
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080043using ndn::Interest;
44using ndn::Data;
45using ndn::Name;
46using ndn::Exclude;
47using ndn::Block;
48namespace tlv {
49using namespace ndn::Tlv;
50}
51
52} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080053
54#endif // NFD_COMMON_HPP