diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-07-02 03:12:36 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-07-02 03:12:36 +0000 |
commit | aa6471979556621151592e147be81ce940558e55 (patch) | |
tree | 487b0fade53903d32a6780fe285caa5de463a9eb /src/nidsstream.h | |
parent | a153962ffe93e70f2419efeab904b515c99c2eda (diff) | |
download | libbu++-aa6471979556621151592e147be81ce940558e55.tar.gz libbu++-aa6471979556621151592e147be81ce940558e55.tar.bz2 libbu++-aa6471979556621151592e147be81ce940558e55.tar.xz libbu++-aa6471979556621151592e147be81ce940558e55.zip |
Caching is coming together nicely, as well as the new nids system...or
whatever it'll be called later...
Diffstat (limited to 'src/nidsstream.h')
-rw-r--r-- | src/nidsstream.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nidsstream.h b/src/nidsstream.h new file mode 100644 index 0000000..08b45eb --- /dev/null +++ b/src/nidsstream.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef BU_NIDS_STREAM_H | ||
2 | #define BU_NIDS_STREAM_H | ||
3 | |||
4 | #include "bu/stream.h" | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | class NidsStream : public Bu::Stream | ||
9 | { | ||
10 | public: | ||
11 | NidsStream(); | ||
12 | virtual ~NidsStream(); | ||
13 | |||
14 | private: | ||
15 | }; | ||
16 | }; | ||
17 | |||
18 | #endif | ||