diff options
Diffstat (limited to '')
-rw-r--r-- | src/client.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h new file mode 100644 index 0000000..27fbad4 --- /dev/null +++ b/src/client.h | |||
@@ -0,0 +1,23 @@ | |||
1 | #ifndef CLIENT_H | ||
2 | #define CLIENT_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "bu/socket.h" | ||
6 | |||
7 | namespace Bu | ||
8 | { | ||
9 | /** | ||
10 | * | ||
11 | */ | ||
12 | class Client | ||
13 | { | ||
14 | public: | ||
15 | Client(); | ||
16 | virtual ~Client(); | ||
17 | |||
18 | private: | ||
19 | |||
20 | }; | ||
21 | } | ||
22 | |||
23 | #endif | ||