aboutsummaryrefslogtreecommitdiff
path: root/src/protocol.h
blob: bca337f52a4fb5fb908fb027eb151ce4aef560e3 (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
25
26
27
#ifndef BU_PROTOCOL_H
#define BU_PROTOCOL_H

#include <stdint.h>

namespace Bu
{
	class Client;

	/**
	 *
	 */
	class Protocol
	{
	public:
		Protocol();
		virtual ~Protocol();

		virtual void onNewConnection( Bu::Client *pClient )=0;
		virtual void onNewData( Bu::Client *pClient )=0;

	private:

	};
}

#endif