From e23028eb568f7f541c2717b5b4fb2c4cf1e2a690 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 21 Aug 2010 04:38:31 +0000 Subject: Packet was silly, the protocol will be good, though. --- src/protocolgats.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/protocolgats.h (limited to 'src/protocolgats.h') diff --git a/src/protocolgats.h b/src/protocolgats.h new file mode 100644 index 0000000..cab5217 --- /dev/null +++ b/src/protocolgats.h @@ -0,0 +1,22 @@ +#ifndef GATS_PROTOCOL_GATS_H +#define GATS_PROTOCOL_GATS_H + +#include + +namespace Gats +{ + class ProtocolGats : public Bu::Protocol + { + public: + ProtocolGats(); + virtual ~ProtocolGats(); + + virtual void onNewData( Bu::Client *pClient ); + + virtual void onNewObject( Gats::Object *pObj )=0; + + private: + }; +}; + +#endif -- cgit v1.2.3