aboutsummaryrefslogtreecommitdiff
path: root/src/protocolgats.h
blob: dcd0c55e202668ee5c4c466a83596d5e2e73c330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef GATS_PROTOCOL_GATS_H
#define GATS_PROTOCOL_GATS_H

#include <bu/protocol.h>

namespace Gats
{
	class Object;

	class ProtocolGats : public Bu::Protocol
	{
	public:
		ProtocolGats();
		virtual ~ProtocolGats();

		virtual void onNewData( Bu::Client *pClient );

		virtual void onNewObject( Gats::Object *pObj )=0;

	private:
	};
};

#endif