aboutsummaryrefslogtreecommitdiff
path: root/src/inprogress
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-06 16:12:02 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-06 16:12:02 +0000
commitcdca5e17e1ecb9f212353dce55c5df2930e34e9d (patch)
tree7b00d10b18fc18831e23b638b9f9987e69cbd736 /src/inprogress
parentb342b70ec5ecb11f84742c76db6f2e19a4b60f90 (diff)
downloadlibbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.gz
libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.bz2
libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.tar.xz
libbu++-cdca5e17e1ecb9f212353dce55c5df2930e34e9d.zip
Moved Taf back into core.
Diffstat (limited to 'src/inprogress')
-rw-r--r--src/inprogress/tafdocument.cpp9
-rw-r--r--src/inprogress/tafdocument.h22
-rw-r--r--src/inprogress/tafnode.cpp9
-rw-r--r--src/inprogress/tafnode.h21
-rw-r--r--src/inprogress/tafreader.cpp16
-rw-r--r--src/inprogress/tafreader.h27
-rw-r--r--src/inprogress/tafwriter.cpp9
-rw-r--r--src/inprogress/tafwriter.h22
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
3Bu::TafDocument::TafDocument()
4{
5}
6
7Bu::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
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
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
3Bu::TafNode::TafNode()
4{
5}
6
7Bu::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
6namespace 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
3Bu::TafReader::TafReader( Bu::Stream &sIn ) :
4 sIn( sIn )
5{
6}
7
8Bu::TafReader::~TafReader()
9{
10}
11
12void 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
8namespace 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
3Bu::TafWriter::TafWriter()
4{
5}
6
7Bu::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
6namespace 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