blob: 1636e4e5627daff3fc4ef72905e5665087b4eae6 [file] [log] [blame]
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#include <stdexcept>
Jeff Thompson53412192013-08-06 13:35:50 -07007#include "transport.hpp"
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07008
9using namespace std;
10
11namespace ndn {
12
Jeff Thompson10e34382013-08-22 13:34:46 -070013Transport::ConnectionInfo::~ConnectionInfo()
14{
15}
16
17void Transport::connect(const Transport::ConnectionInfo &connectionInfo, ElementListener &elementListener)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070018{
19 throw logic_error("unimplemented");
20}
21
Jeff Thompson3cd04e82013-07-30 15:27:59 -070022void Transport::send(const unsigned char *data, unsigned int dataLength)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070023{
24 throw logic_error("unimplemented");
25}
Jeff Thompson432c8be2013-08-09 16:16:08 -070026
27void Transport::processEvents()
28{
29 throw logic_error("unimplemented");
30}
31
Jeff Thompsona4056972013-08-22 11:52:21 -070032bool Transport::getIsConnected()
33{
34 throw logic_error("unimplemented");
35}
36
Jeff Thompson57963882013-08-05 16:01:25 -070037void Transport::close()
38{
39}
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070040
Jeff Thompson43d6c0a2013-08-12 12:35:48 -070041Transport::~Transport()
42{
43}
44
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070045}