diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-05-09 15:01:03 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-05-09 15:01:03 +0000 |
commit | 2e035fee36768e3c765b7f5dc10bf0a3b7d2448b (patch) | |
tree | fde606c514a9321cd4bf0d8c075b3b1c22d3a960 /src/tafreader.h | |
parent | 6e7e30b5fd87766566620d48e785072e0b5c52cd (diff) | |
download | libbu++-2e035fee36768e3c765b7f5dc10bf0a3b7d2448b.tar.gz libbu++-2e035fee36768e3c765b7f5dc10bf0a3b7d2448b.tar.bz2 libbu++-2e035fee36768e3c765b7f5dc10bf0a3b7d2448b.tar.xz libbu++-2e035fee36768e3c765b7f5dc10bf0a3b7d2448b.zip |
Minor changes to both the taf and xml readers. I'm thinking I'm going to
archive these for now and resurect/fix the old xml reader, just to have
something working.
Diffstat (limited to '')
-rw-r--r-- | src/tafreader.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tafreader.h b/src/tafreader.h index d9f1dfd..2dbb9ea 100644 --- a/src/tafreader.h +++ b/src/tafreader.h | |||
@@ -2,19 +2,22 @@ | |||
2 | #define BU_TAF_READER_H | 2 | #define BU_TAF_READER_H |
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | #include "bu/tafdocument.h" | ||
6 | #include "bu/stream.h" | ||
5 | 7 | ||
6 | namespace Bu | 8 | namespace Bu |
7 | { | 9 | { |
8 | /** | 10 | /** |
9 | * | 11 | * |
10 | */ | 12 | */ |
11 | class TafReader | 13 | class TafReader : public Bu::TafDocument |
12 | { | 14 | { |
13 | public: | 15 | public: |
14 | TafReader(); | 16 | TafReader( Bu::Stream &sIn ); |
15 | virtual ~TafReader(); | 17 | virtual ~TafReader(); |
16 | 18 | ||
17 | private: | 19 | private: |
20 | Stream &sIn; | ||
18 | 21 | ||
19 | }; | 22 | }; |
20 | } | 23 | } |