blob: 0fa97bcb695f2bcca6551dd0bfcc0aea60137804 [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>
7#include "Transport.hpp"
8
9using namespace std;
10
11namespace ndn {
12
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070013void Transport::connect(NDN &ndn)
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}
22
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070023}