blob: 4d5db2154a439c40bbb7fd48eafc4443d0245d70 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07005 * See COPYING for copyright and distribution information.
6 */
7
8#include <stdexcept>
Jeff Thompson25b4e612013-10-10 16:03:24 -07009#include <ndn-cpp/transport/transport.hpp>
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070010
11using namespace std;
12
13namespace ndn {
14
Jeff Thompson0050abe2013-09-17 12:50:25 -070015void
16Transport::close()
Jeff Thompson57963882013-08-05 16:01:25 -070017{
18}
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070019
Jeff Thompson43d6c0a2013-08-12 12:35:48 -070020Transport::~Transport()
21{
22}
23
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070024}