diff options
Diffstat (limited to '')
-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 | |||