mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
([Stream -writeFormat:arguments:]): New method.
([Stream -readFormat:arguments:]): New method. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@802 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c706d02b55
commit
a82c850a89
1 changed files with 14 additions and 0 deletions
|
@ -57,12 +57,26 @@
|
|||
return 0;
|
||||
}
|
||||
|
||||
- (int) writeFormat: (id <String>)format
|
||||
arguments: (va_list)arg
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (int) writeFormat: (id <String>)format, ...
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (int) readFormat: (id <String>)format
|
||||
arguments: (va_list)arg
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (int) readFormat: (id <String>)format, ...
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
|
|
Loading…
Reference in a new issue