From c4ac3de73f6b5ca52d0bcaac5cf045f6469dacb9 Mon Sep 17 00:00:00 2001 From: mccallum Date: Tue, 20 Jun 1995 16:14:50 +0000 Subject: [PATCH] ([NSGArchiver -initForWritingWithMutableData:]): New method. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@439 72102866-910b-0410-8b05-ffd578937521 --- Source/NSGArchiver.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/NSGArchiver.m b/Source/NSGArchiver.m index 6026500a3..7a1071ca5 100644 --- a/Source/NSGArchiver.m +++ b/Source/NSGArchiver.m @@ -39,4 +39,10 @@ } } +/* This is the designated initializer */ +- (id) initForWritingWithMutableData: (NSMutableData*)mdata +{ + [self initEncodingOnStream:mdata]; + return self; +} @end