Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 1 | /* -*- 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 | #include "forwarder.hpp" |
| 8 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 9 | namespace nfd { |
Alexander Afanasyev | 33b7277 | 2014-01-26 23:22:58 -0800 | [diff] [blame] | 10 | |
| 11 | Forwarder::Forwarder(boost::asio::io_service& ioService) |
| 12 | { |
| 13 | } |
| 14 | |
| 15 | uint64_t |
| 16 | Forwarder::addFace(const shared_ptr<Face>& face) |
| 17 | { |
| 18 | return -1; |
| 19 | } |
| 20 | |
| 21 | void |
| 22 | Forwarder::removeFace(const shared_ptr<Face>& face) |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | void |
| 27 | Forwarder::onInterest(const Face& face, const Interest& interest) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | void |
| 32 | Forwarder::onData(const Face& face, const Data& data) |
| 33 | { |
| 34 | } |
| 35 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 36 | } // namespace nfd |