diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-09-15 22:32:19 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-09-15 22:32:19 +0000 |
commit | 5230927c4f087cf2dcaac4fb9ed133c1ff3e2269 (patch) | |
tree | a1c360127bc9d44aa5cf60aed14582058890db88 /src/nidsstream.h | |
parent | 597a1487c716b799428f4b4a4903e65df4c93ba9 (diff) | |
download | libbu++-5230927c4f087cf2dcaac4fb9ed133c1ff3e2269.tar.gz libbu++-5230927c4f087cf2dcaac4fb9ed133c1ff3e2269.tar.bz2 libbu++-5230927c4f087cf2dcaac4fb9ed133c1ff3e2269.tar.xz libbu++-5230927c4f087cf2dcaac4fb9ed133c1ff3e2269.zip |
Wooo! It compiles again! The nids streams are almost ready.
Diffstat (limited to '')
-rw-r--r-- | src/nidsstream.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nidsstream.h b/src/nidsstream.h index 8021dee..f64fca4 100644 --- a/src/nidsstream.h +++ b/src/nidsstream.h | |||
@@ -14,9 +14,9 @@ namespace Bu | |||
14 | * These can only be created by the Nids class. | 14 | * These can only be created by the Nids class. |
15 | */ | 15 | */ |
16 | NidsStream( Nids &rNids ); | 16 | NidsStream( Nids &rNids ); |
17 | NidsStream( const NidsStream &rSrc ); | ||
18 | 17 | ||
19 | public: | 18 | public: |
19 | NidsStream( const NidsStream &rSrc ); | ||
20 | virtual ~NidsStream(); | 20 | virtual ~NidsStream(); |
21 | 21 | ||
22 | virtual void close(); | 22 | virtual void close(); |
@@ -42,6 +42,7 @@ namespace Bu | |||
42 | Nids &rNids; | 42 | Nids &rNids; |
43 | typedef struct Bu::Hash<int, struct Nids::Block *> BlockHash; | 43 | typedef struct Bu::Hash<int, struct Nids::Block *> BlockHash; |
44 | BlockHash hBlock; | 44 | BlockHash hBlock; |
45 | long iPos; | ||
45 | }; | 46 | }; |
46 | }; | 47 | }; |
47 | 48 | ||