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