mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-23 13:42:15 +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
730b7fffe3
commit
39fbf08e75
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…
Add table
Add a link
Reference in a new issue