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

#include <stdint.h>
#include "bu/socket.h"

namespace Bu
{
	/**
	 *
	 */
	class Client
	{
	public:
		Client();
		virtual ~Client();

	private:

	};
}

#endif