diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-06 18:48:07 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-06 18:48:07 +0000 |
commit | 3144bd7deb950de0cb80e2215c1545bdf8fc81e9 (patch) | |
tree | ddd78879963a3e80c3ccc4aacc6cdf8c5fda79d4 /src/tests | |
parent | cdca5e17e1ecb9f212353dce55c5df2930e34e9d (diff) | |
download | libbu++-3144bd7deb950de0cb80e2215c1545bdf8fc81e9.tar.gz libbu++-3144bd7deb950de0cb80e2215c1545bdf8fc81e9.tar.bz2 libbu++-3144bd7deb950de0cb80e2215c1545bdf8fc81e9.tar.xz libbu++-3144bd7deb950de0cb80e2215c1545bdf8fc81e9.zip |
Except for storing the data somewhere, the TafReader is more or less done.
Some more generalizations are in order, then we'll stuff the data somewhere.
Diffstat (limited to '')
-rw-r--r-- | src/tests/taf.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp new file mode 100644 index 0000000..12c653e --- /dev/null +++ b/src/tests/taf.cpp | |||
@@ -0,0 +1,9 @@ | |||
1 | #include "bu/tafreader.h" | ||
2 | #include "bu/file.h" | ||
3 | |||
4 | int main() | ||
5 | { | ||
6 | Bu::File f("test.taf", "rb"); | ||
7 | Bu::TafReader tr( f ); | ||
8 | } | ||
9 | |||