blob: feb1345c42d1451a1f90ac1ec7aa4ba58cbc71e6 [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 Thompsonbf50a1a2013-08-20 18:01:01 -070013void Transport::connect(Node &node)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070014{
15 throw logic_error("unimplemented");
16}
17
Jeff Thompson3cd04e82013-07-30 15:27:59 -070018void Transport::send(const unsigned char *data, unsigned int dataLength)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070019{
20 throw logic_error("unimplemented");
21}
Jeff Thompson432c8be2013-08-09 16:16:08 -070022
23void Transport::processEvents()
24{
25 throw logic_error("unimplemented");
26}
27
Jeff Thompsona4056972013-08-22 11:52:21 -070028bool Transport::getIsConnected()
29{
30 throw logic_error("unimplemented");
31}
32
Jeff Thompson57963882013-08-05 16:01:25 -070033void Transport::close()
34{
35}
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070036
Jeff Thompson43d6c0a2013-08-12 12:35:48 -070037Transport::~Transport()
38{
39}
40
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070041}