git-svn-id: svn://elaine/murooma/trunk@218 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-08-29 05:36:48 +00:00
parent 9c6ee38ce4
commit 763d17defc
8 changed files with 361 additions and 4 deletions

16
client/decoder.h Normal file
View file

@ -0,0 +1,16 @@
#ifndef DECODER_H
#define DECODER_H
#include "common/chunk.h"
class Decoder
{
public:
Decoder();
virtual bool decode(Chunk* chunk) = 0;
};
#endif