Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
| 6 | #include <stdexcept> |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 7 | #include "transport.hpp" |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 8 | |
| 9 | using namespace std; |
| 10 | |
| 11 | namespace ndn { |
| 12 | |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame^] | 13 | Transport::ConnectionInfo::~ConnectionInfo() |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | void Transport::connect(const Transport::ConnectionInfo &connectionInfo, ElementListener &elementListener) |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 18 | { |
| 19 | throw logic_error("unimplemented"); |
| 20 | } |
| 21 | |
Jeff Thompson | 3cd04e8 | 2013-07-30 15:27:59 -0700 | [diff] [blame] | 22 | void Transport::send(const unsigned char *data, unsigned int dataLength) |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 23 | { |
| 24 | throw logic_error("unimplemented"); |
| 25 | } |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 26 | |
| 27 | void Transport::processEvents() |
| 28 | { |
| 29 | throw logic_error("unimplemented"); |
| 30 | } |
| 31 | |
Jeff Thompson | a405697 | 2013-08-22 11:52:21 -0700 | [diff] [blame] | 32 | bool Transport::getIsConnected() |
| 33 | { |
| 34 | throw logic_error("unimplemented"); |
| 35 | } |
| 36 | |
Jeff Thompson | 5796388 | 2013-08-05 16:01:25 -0700 | [diff] [blame] | 37 | void Transport::close() |
| 38 | { |
| 39 | } |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 40 | |
Jeff Thompson | 43d6c0a | 2013-08-12 12:35:48 -0700 | [diff] [blame] | 41 | Transport::~Transport() |
| 42 | { |
| 43 | } |
| 44 | |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 45 | } |