2013-11-21 13:40:52 +01:00
|
|
|
#ifndef NETWORK_DEPENDENCIES_I_TRANSLATE
|
|
|
|
#define NETWORK_DEPENDENCIES_I_TRANSLATE
|
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Network
|
|
|
|
{
|
|
|
|
class ITranslate
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2013-11-21 14:49:30 +01:00
|
|
|
virtual unsigned char* Translate (Protocols::ProtocolHeader &header ) = 0;
|
2013-11-22 08:56:00 +01:00
|
|
|
virtual Protocols::ProtocolHeader* Translate ( unsigned char message[] ) = 0;
|
2013-11-21 13:40:52 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|