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/nids.cpp | |
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/nids.cpp')
-rw-r--r-- | src/nids.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/nids.cpp b/src/nids.cpp new file mode 100644 index 0000000..b8ea13b --- /dev/null +++ b/src/nids.cpp | |||
@@ -0,0 +1,21 @@ | |||
1 | #include "bu/nids.h" | ||
2 | |||
3 | Bu::Nids::Nids( Bu::Stream &sStore ) : | ||
4 | sStore( sStore ) | ||
5 | { | ||
6 | } | ||
7 | |||
8 | Bu::Nids::~Nids() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | void Bu::Nids::initialize( int iBlockSize, int iPreAllocate ) | ||
13 | { | ||
14 | } | ||
15 | |||
16 | int Bu::Nids::createStream( int iPreAllocate ) | ||
17 | { | ||
18 | return 0; | ||
19 | } | ||
20 | |||
21 | |||