Ability to get buffer from inputmessage

This commit is contained in:
Shawak
2014-03-22 18:05:32 +01:00
parent 4f79a30689
commit 8179915e06
2 changed files with 2 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ public:
InputMessage();
void setBuffer(const std::string& buffer);
std::string getBuffer() { return std::string((char*)m_buffer + m_headerPos, m_messageSize); }
void skipBytes(uint16 bytes) { m_readPos += bytes; }
void setReadPos(uint16 readPos) { m_readPos = readPos; }