diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-06 16:12:02 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-06 16:12:02 +0000 |
commit | cdca5e17e1ecb9f212353dce55c5df2930e34e9d (patch) | |
tree | 7b00d10b18fc18831e23b638b9f9987e69cbd736 /src/tafreader.h | |
parent | b342b70ec5ecb11f84742c76db6f2e19a4b60f90 (diff) | |
download | libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.gz libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.bz2 libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.xz libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.zip |
Moved Taf back into core.
Diffstat (limited to 'src/tafreader.h')
-rw-r--r-- | src/tafreader.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tafreader.h b/src/tafreader.h new file mode 100644 index 0000000..b552f5d --- /dev/null +++ b/src/tafreader.h | |||
@@ -0,0 +1,27 @@ | |||
1 | #ifndef BU_TAF_READER_H | ||
2 | #define BU_TAF_READER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "bu/tafdocument.h" | ||
6 | #include "bu/stream.h" | ||
7 | |||
8 | namespace Bu | ||
9 | { | ||
10 | /** | ||
11 | * | ||
12 | */ | ||
13 | class TafReader : public Bu::TafDocument | ||
14 | { | ||
15 | public: | ||
16 | TafReader( Bu::Stream &sIn ); | ||
17 | virtual ~TafReader(); | ||
18 | |||
19 | private: | ||
20 | void next(); | ||
21 | char c; | ||
22 | Stream &sIn; | ||
23 | |||
24 | }; | ||
25 | } | ||
26 | |||
27 | #endif | ||