diff options
Diffstat (limited to 'src/inprogress/tafreader.h')
-rw-r--r-- | src/inprogress/tafreader.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/inprogress/tafreader.h b/src/inprogress/tafreader.h new file mode 100644 index 0000000..2dbb9ea --- /dev/null +++ b/src/inprogress/tafreader.h | |||
@@ -0,0 +1,25 @@ | |||
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 | Stream &sIn; | ||
21 | |||
22 | }; | ||
23 | } | ||
24 | |||
25 | #endif | ||