aboutsummaryrefslogtreecommitdiff
path: root/src/tafdocument.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-06 21:18:15 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-06 21:18:15 +0000
commit3c846af2fa8e4693c190c5131ec87d967eb58b3e (patch)
tree46ce9a7ae6f83d1dccd79a751a5340cca2eb05bc /src/tafdocument.h
parent3144bd7deb950de0cb80e2215c1545bdf8fc81e9 (diff)
downloadlibbu++-3c846af2fa8e4693c190c5131ec87d967eb58b3e.tar.gz
libbu++-3c846af2fa8e4693c190c5131ec87d967eb58b3e.tar.bz2
libbu++-3c846af2fa8e4693c190c5131ec87d967eb58b3e.tar.xz
libbu++-3c846af2fa8e4693c190c5131ec87d967eb58b3e.zip
The TafReader is more general and much nicer, and about to actually construct
nodes, that part will be exciting. I also fixed some stuff and added some new functions to List, it now has first() and last() which work just like std::list front() and back(), I may add compatibility functions later...
Diffstat (limited to '')
-rw-r--r--src/tafdocument.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/tafdocument.h b/src/tafdocument.h
deleted file mode 100644
index 171f829..0000000
--- a/src/tafdocument.h
+++ /dev/null
@@ -1,22 +0,0 @@
1#ifndef BU_TAF_DOCUMENT_H
2#define BU_TAF_DOCUMENT_H
3
4#include <stdint.h>
5
6namespace 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