Danbias/Code/Network/NetworkDependencies/IConnection.h

26 lines
640 B
C
Raw Normal View History

2013-11-19 12:38:13 +01:00
//////////////////////////////////
// Created by Sam Svensson 2013 //
//////////////////////////////////
#ifndef NETWORK_DEPENDENCIES_I_CONNECTION_H
#define NETWORK_DEPENDENCIES_I_CONNECTION_H
namespace Oyster
2013-11-19 12:38:13 +01:00
{
namespace Network
{
class IConnection
{
public:
virtual void Disconnect() = 0;
2013-11-22 08:56:00 +01:00
virtual bool Send( const unsigned char message[] ) = 0;
virtual int Recieve(unsigned char message[]) = 0;
virtual bool InitiateServer( unsigned short port ) { return false; };
virtual int Listen() { return -1; };
virtual bool Connect( unsigned short port, const char serverName[] ) { return false; };
};
}
}
2013-11-19 12:38:13 +01:00
#endif