first classes

This commit is contained in:
stubbfel
2016-11-21 01:02:46 +01:00
commit ce12764a4b
14 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef ABSTRACTPACKETHANDLER_H
#define ABSTRACTPACKETHANDLER_H
class AbstractPacketHandler
{
public:
protected:
AbstractPacketHandler();
virtual ~AbstractPacketHandler();
private:
};
#endif // ABSTRACTPACKETHANDLER_H