diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-05-08 06:33:25 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-05-08 06:33:25 +0000 |
commit | 6e7e30b5fd87766566620d48e785072e0b5c52cd (patch) | |
tree | 2c891f89a860e76fb04a11c6a3139186c8c548d3 /src/tafdocument.h | |
parent | c17c4ebbab022de80a9f893115f2fd41e6a07c44 (diff) | |
download | libbu++-6e7e30b5fd87766566620d48e785072e0b5c52cd.tar.gz libbu++-6e7e30b5fd87766566620d48e785072e0b5c52cd.tar.bz2 libbu++-6e7e30b5fd87766566620d48e785072e0b5c52cd.tar.xz libbu++-6e7e30b5fd87766566620d48e785072e0b5c52cd.zip |
Now they all read "taf" not "tsf" :)
Diffstat (limited to '')
-rw-r--r-- | src/tafdocument.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tafdocument.h b/src/tafdocument.h new file mode 100644 index 0000000..171f829 --- /dev/null +++ b/src/tafdocument.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef BU_TAF_DOCUMENT_H | ||
2 | #define BU_TAF_DOCUMENT_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | /** | ||
9 | * | ||
10 | */ | ||
11 | class TafDocument | ||
12 | { | ||
13 | public: | ||
14 | TafDocument(); | ||
15 | virtual ~TafDocument(); | ||
16 | |||
17 | private: | ||
18 | |||
19 | }; | ||
20 | } | ||
21 | |||
22 | #endif | ||