summaryrefslogtreecommitdiff
path: root/tools/source.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-02-08 17:22:35 +0000
committerlordjaxom <lordjaxom>2005-02-08 17:22:35 +0000
commitb2b925d1a933c9129eb84699e9893d80e7e9534d (patch)
tree67e9e1a54c473ad8ec6553a389cda918f8573044 /tools/source.h
parent0132230de0a894c4bf40dced2b82ea60546b9a61 (diff)
downloadvdr-plugin-streamdev-b2b925d1a933c9129eb84699e9893d80e7e9534d.tar.gz
vdr-plugin-streamdev-b2b925d1a933c9129eb84699e9893d80e7e9534d.tar.bz2
- transfer
Diffstat (limited to 'tools/source.h')
-rw-r--r--tools/source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source.h b/tools/source.h
index 09536bc..d55f3e1 100644
--- a/tools/source.h
+++ b/tools/source.h
@@ -2,9 +2,9 @@
#define TOOLBOX_SOURCE_H
#include "tools/tools.h"
-#include "tools/string.h"
#include <sys/types.h>
+#include <string>
/* cTBSource provides an abstract interface for input and output. It can
be used to have common access to different types of UNIX-files. */
@@ -16,7 +16,7 @@ private:
size_t m_BytesRead;
size_t m_BytesWritten;
- cTBString m_LineBuffer;
+ std::string m_LineBuffer;
public:
cTBSource(void);