blob: ad76dc29fff0d0aff2f146dc91a6bc3d32a8270d [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#include <stdexcept>
#include "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 unsigned char *data, unsigned int dataLength)
{
throw logic_error("unimplemented");
}
void Transport::processEvents()
{
throw logic_error("unimplemented");
}
bool Transport::getIsConnected()
{
throw logic_error("unimplemented");
}
void Transport::close()
{
}
Transport::~Transport()
{
}
}