diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-05-08 06:31:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-05-08 06:31:33 +0000 |
commit | c17c4ebbab022de80a9f893115f2fd41e6a07c44 (patch) | |
tree | e2d49c6e96447b6046f5567fa897f4da56caf639 /src/tsfwriter.h | |
parent | 0f0be6146dc711f8d44db0348e8fe0d010a31ca7 (diff) | |
download | libbu++-c17c4ebbab022de80a9f893115f2fd41e6a07c44.tar.gz libbu++-c17c4ebbab022de80a9f893115f2fd41e6a07c44.tar.bz2 libbu++-c17c4ebbab022de80a9f893115f2fd41e6a07c44.tar.xz libbu++-c17c4ebbab022de80a9f893115f2fd41e6a07c44.zip |
Added the TAF format structures and XML format structures, I'm making up TAF
(textual archive format), but named it wrong, this seemed easier than redoing
it all.
Diffstat (limited to 'src/tsfwriter.h')
-rw-r--r-- | src/tsfwriter.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tsfwriter.h b/src/tsfwriter.h new file mode 100644 index 0000000..18f19d6 --- /dev/null +++ b/src/tsfwriter.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef TSF_WRITER_H | ||
2 | #define TSF_WRITER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | /** | ||
9 | * | ||
10 | */ | ||
11 | class TsfWriter | ||
12 | { | ||
13 | public: | ||
14 | TsfWriter(); | ||
15 | virtual ~TsfWriter(); | ||
16 | |||
17 | private: | ||
18 | |||
19 | }; | ||
20 | } | ||
21 | |||
22 | #endif | ||