blob: 1636e4e5627daff3fc4ef72905e5665087b4eae6 [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()
{
}
}