blob: 0dcf5184fa97773cd8a110f9a39865fb4aeb1883 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include <stdexcept>
#include <ndn-cpp/transport/transport.hpp>
using namespace std;
namespace ndn {
Transport::ConnectionInfo::~ConnectionInfo()
{
}
void
Transport::connect(const Transport::ConnectionInfo& connectionInfo, ElementListener& elementListener)
{
throw logic_error("unimplemented");
}
void
Transport::send(const uint8_t *data, size_t dataLength)
{
throw logic_error("unimplemented");
}
void
Transport::processEvents()
{
throw logic_error("unimplemented");
}
bool
Transport::getIsConnected()
{
throw logic_error("unimplemented");
}
void
Transport::close()
{
}
Transport::~Transport()
{
}
}