aboutsummaryrefslogtreecommitdiff
path: root/src/tests/taf.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-06 18:48:07 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-06 18:48:07 +0000
commit3144bd7deb950de0cb80e2215c1545bdf8fc81e9 (patch)
treeddd78879963a3e80c3ccc4aacc6cdf8c5fda79d4 /src/tests/taf.cpp
parentcdca5e17e1ecb9f212353dce55c5df2930e34e9d (diff)
downloadlibbu++-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 'src/tests/taf.cpp')
-rw-r--r--src/tests/taf.cpp9
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
4int main()
5{
6 Bu::File f("test.taf", "rb");
7 Bu::TafReader tr( f );
8}
9