summaryrefslogtreecommitdiff
path: root/MLKStringOutputStream.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-28 16:26:07 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-28 16:26:07 +0200
commit3a5710bf7cb85da4ba6a327d6149db46e6bed82e (patch)
treefd63fdf8063ed5230e43785c64bd1990c42875a3 /MLKStringOutputStream.h
parent5afdd34ed00ed1de76b90a884e5b04bd699dc0af (diff)
Eliminate MLKStream, introduce MLKBinaryStream and MLKCharacterStream.
Diffstat (limited to 'MLKStringOutputStream.h')
-rw-r--r--MLKStringOutputStream.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/MLKStringOutputStream.h b/MLKStringOutputStream.h
index f8e4ca5..75c3726 100644
--- a/MLKStringOutputStream.h
+++ b/MLKStringOutputStream.h
@@ -16,10 +16,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKStream.h"
+#import "MLKBinaryStreamCharacterStream.h"
-@interface MLKStringOutputStream : MLKStream
+@interface MLKStringOutputStream : MLKBinaryStreamCharacterStream
+{
+ NSOutputStream *_outputStream;
+}
+
-(id) init;
+-(void) dealloc;
-(NSString *) string;
@end