aboutsummaryrefslogtreecommitdiff
path: root/src/SStringIO_Namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SStringIO_Namespace.h')
-rw-r--r--src/SStringIO_Namespace.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/SStringIO_Namespace.h b/src/SStringIO_Namespace.h
new file mode 100644
index 0000000..274027b
--- /dev/null
+++ b/src/SStringIO_Namespace.h
@@ -0,0 +1,25 @@
+ /*@@
+ @file SStringIO_Namespace.h
+ @date 02.04.2004
+ @author Steve White
+ @desc Extensions to Strings module involvint file IO
+ @enddesc
+ @version $Header$
+ @@*/
+#ifndef _SSTRINGIO_NAMESPACE_H
+#define _SSTRINGIO_NAMESPACE_H
+
+#include "SStringIO.h"
+
+#define ReadToDelimiter( a, f, d ) \
+ StringReadToDelimiter( a, f, d )
+#define ReadToEndOfLine( a, f ) \
+ StringReadToEndOfLine( a, f )
+#define ReadLine( a, f ) \
+ StringReadLine( a, f )
+#define PrintToFile( a, f ) \
+ StringPrintToFile( a, f )
+#define FormatPrintToFile( a, s, f ) \
+ StringFormatPrintToFile( a, s, f )
+
+#endif