mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(write:, read:): Put back these old-style archiving methods.
(From Stephen Peters <SPETERS@us.oracle.com>). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@346 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2cd3041bbe
commit
f6c8f41a3b
1 changed files with 16 additions and 0 deletions
|
@ -1218,6 +1218,22 @@ for info about latest version.",
|
|||
return licenseString;
|
||||
}
|
||||
|
||||
- write: (TypedStream *)aStream
|
||||
{
|
||||
[super write: aStream];
|
||||
[self _writeInit:aStream];
|
||||
[self _writeContents:aStream];
|
||||
return self;
|
||||
}
|
||||
|
||||
- read: (TypedStream *)aStream
|
||||
{
|
||||
[super read: aStream];
|
||||
[self _readInit:aStream];
|
||||
[self _readContents:aStream];
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) encodeWithCoder: aCoder
|
||||
{
|
||||
[self _encodeCollectionWithCoder:aCoder];
|
||||
|
|
Loading…
Reference in a new issue