diff options
Diffstat (limited to 'src/inprogress')
-rw-r--r-- | src/inprogress/tafdocument.cpp | 9 | ||||
-rw-r--r-- | src/inprogress/tafdocument.h | 22 | ||||
-rw-r--r-- | src/inprogress/tafnode.cpp | 9 | ||||
-rw-r--r-- | src/inprogress/tafnode.h | 21 | ||||
-rw-r--r-- | src/inprogress/tafreader.cpp | 16 | ||||
-rw-r--r-- | src/inprogress/tafreader.h | 27 | ||||
-rw-r--r-- | src/inprogress/tafwriter.cpp | 9 | ||||
-rw-r--r-- | src/inprogress/tafwriter.h | 22 |
8 files changed, 0 insertions, 135 deletions
diff --git a/src/inprogress/tafdocument.cpp b/src/inprogress/tafdocument.cpp deleted file mode 100644 index bd44dd5..0000000 --- a/src/inprogress/tafdocument.cpp +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #include "tafdocument.h" | ||
2 | |||
3 | Bu::TafDocument::TafDocument() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::TafDocument::~TafDocument() | ||
8 | { | ||
9 | } | ||
diff --git a/src/inprogress/tafdocument.h b/src/inprogress/tafdocument.h deleted file mode 100644 index 171f829..0000000 --- a/src/inprogress/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 | |||
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 | ||
diff --git a/src/inprogress/tafnode.cpp b/src/inprogress/tafnode.cpp deleted file mode 100644 index c9756ec..0000000 --- a/src/inprogress/tafnode.cpp +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #include "tafnode.h" | ||
2 | |||
3 | Bu::TafNode::TafNode() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::TafNode::~TafNode() | ||
8 | { | ||
9 | } | ||
diff --git a/src/inprogress/tafnode.h b/src/inprogress/tafnode.h deleted file mode 100644 index 34f5289..0000000 --- a/src/inprogress/tafnode.h +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #ifndef BU_TAF_NODE_H | ||
2 | #define BU_TAF_NODE_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | /** | ||
9 | * | ||
10 | */ | ||
11 | class TafNode | ||
12 | { | ||
13 | public: | ||
14 | TafNode(); | ||
15 | virtual ~TafNode(); | ||
16 | |||
17 | private: | ||
18 | |||
19 | }; | ||
20 | } | ||
21 | #endif | ||
diff --git a/src/inprogress/tafreader.cpp b/src/inprogress/tafreader.cpp deleted file mode 100644 index 4d10b8d..0000000 --- a/src/inprogress/tafreader.cpp +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | #include "tafreader.h" | ||
2 | |||
3 | Bu::TafReader::TafReader( Bu::Stream &sIn ) : | ||
4 | sIn( sIn ) | ||
5 | { | ||
6 | } | ||
7 | |||
8 | Bu::TafReader::~TafReader() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | void Bu::TafReader::next() | ||
13 | { | ||
14 | sIn.read( &c, 1 ); | ||
15 | } | ||
16 | |||
diff --git a/src/inprogress/tafreader.h b/src/inprogress/tafreader.h deleted file mode 100644 index b552f5d..0000000 --- a/src/inprogress/tafreader.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | #ifndef BU_TAF_READER_H | ||
2 | #define BU_TAF_READER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "bu/tafdocument.h" | ||
6 | #include "bu/stream.h" | ||
7 | |||
8 | namespace Bu | ||
9 | { | ||
10 | /** | ||
11 | * | ||
12 | */ | ||
13 | class TafReader : public Bu::TafDocument | ||
14 | { | ||
15 | public: | ||
16 | TafReader( Bu::Stream &sIn ); | ||
17 | virtual ~TafReader(); | ||
18 | |||
19 | private: | ||
20 | void next(); | ||
21 | char c; | ||
22 | Stream &sIn; | ||
23 | |||
24 | }; | ||
25 | } | ||
26 | |||
27 | #endif | ||
diff --git a/src/inprogress/tafwriter.cpp b/src/inprogress/tafwriter.cpp deleted file mode 100644 index 3e6c025..0000000 --- a/src/inprogress/tafwriter.cpp +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #include "tafwriter.h" | ||
2 | |||
3 | Bu::TafWriter::TafWriter() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::TafWriter::~TafWriter() | ||
8 | { | ||
9 | } | ||
diff --git a/src/inprogress/tafwriter.h b/src/inprogress/tafwriter.h deleted file mode 100644 index 7057d62..0000000 --- a/src/inprogress/tafwriter.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #ifndef BU_TAF_WRITER_H | ||
2 | #define BU_TAF_WRITER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | namespace Bu | ||
7 | { | ||
8 | /** | ||
9 | * | ||
10 | */ | ||
11 | class TafWriter | ||
12 | { | ||
13 | public: | ||
14 | TafWriter(); | ||
15 | virtual ~TafWriter(); | ||
16 | |||
17 | private: | ||
18 | |||
19 | }; | ||
20 | } | ||
21 | |||
22 | #endif | ||