diff options
Diffstat (limited to 'src/tests/taf.cpp')
-rw-r--r-- | src/tests/taf.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp new file mode 100644 index 0000000..e3da120 --- /dev/null +++ b/src/tests/taf.cpp | |||
@@ -0,0 +1,24 @@ | |||
1 | #include "bu/tafreader.h" | ||
2 | #include "bu/tafwriter.h" | ||
3 | #include "bu/file.h" | ||
4 | |||
5 | int main() | ||
6 | { | ||
7 | Bu::File f("test.taf", "rb"); | ||
8 | Bu::TafReader tr( f ); | ||
9 | |||
10 | Bu::TafGroup *pGroup = tr.readGroup(); | ||
11 | |||
12 | const Bu::TafGroup *pStats = pGroup->getChild("stats"); | ||
13 | printf("%s\n", pStats->getName().getStr() ); | ||
14 | printf(" str = %s\n", pStats->getProperty("str").getStr() ); | ||
15 | |||
16 | { | ||
17 | Bu::File fo("out.taf", "wb"); | ||
18 | Bu::TafWriter tw( fo ); | ||
19 | tw.writeGroup( pGroup ); | ||
20 | } | ||
21 | |||
22 | delete pGroup; | ||
23 | } | ||
24 | |||