aboutsummaryrefslogtreecommitdiff
path: root/src/protocol.h
blob: 3accd99da668832f0e53a989027c0ad9bf52a0c4 (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
#ifndef PROTOCOL_H
#define PROTOCOL_H

#include <stdint.h>

namespace Bu
{
	class Client;

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

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

	private:

	};
}

#endif