Danbias/Code/Network/NetworkDependencies/Translator.h

32 lines
687 B
C
Raw Normal View History

2013-11-21 14:49:30 +01:00
#ifndef NETWORK_DEPENDENCIES_TRANSLATOR_H
#define NETWORK_DEPENDENCIES_TRANSLATOR_H
//////////////////////////////////
// Created by Sam Svensson 2013 //
//////////////////////////////////
2013-11-21 14:49:30 +01:00
#include "Messages/MessagesInclude.h"
#include "Protocols.h"
#include "ITranslate.h"
namespace Oyster
{
namespace Network
{
class Translator : public ITranslate
{
public:
2013-11-22 14:23:08 +01:00
Translator () { msg = new unsigned char[256]; };
~Translator() { if(msg != NULL) { delete [] this->msg; }};
2013-11-21 14:49:30 +01:00
unsigned char* Pack (Protocols::ProtocolHeader &header );
Protocols::ProtocolSet* Unpack (Protocols::ProtocolSet* set, unsigned char msg[] );
private:
2013-11-22 14:23:08 +01:00
unsigned char* msg;
2013-11-21 14:49:30 +01:00
};
}
}
#endif