diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 13:53:18 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-04-10 13:53:18 +0000 |
commit | 5a0d7856dc265580cebaa833e0367d03ef21bbc3 (patch) | |
tree | ebd127d25b3658d3f0417cdb1706e0049a9a28de /src/ssocket.h | |
parent | 997f13ec4791adcda91cd4db41cdb5962b73d47d (diff) | |
download | libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.gz libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.bz2 libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.xz libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.zip |
Woo, changed the name of Achable to Archival, I dig that, and added the ground-
work for the SSocket, that should be cool.
Diffstat (limited to 'src/ssocket.h')
-rw-r--r-- | src/ssocket.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ssocket.h b/src/ssocket.h new file mode 100644 index 0000000..ce02091 --- /dev/null +++ b/src/ssocket.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #ifndef S_SOCKET_H | ||
2 | #define S_SOCKET_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "stream.h" | ||
7 | |||
8 | namespace Bu | ||
9 | { | ||
10 | /** | ||
11 | * | ||
12 | */ | ||
13 | class SSocket : public Stream | ||
14 | { | ||
15 | public: | ||
16 | SSocket(); | ||
17 | virtual ~SSocket(); | ||
18 | |||
19 | private: | ||
20 | |||
21 | }; | ||
22 | } | ||
23 | |||
24 | #endif | ||