mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +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
7d821d5a96
commit
2e84da89f9
1 changed files with 14 additions and 0 deletions
|
@ -57,12 +57,26 @@
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (int) writeFormat: (id <String>)format
|
||||||
|
arguments: (va_list)arg
|
||||||
|
{
|
||||||
|
[self subclassResponsibility:_cmd];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
- (int) writeFormat: (id <String>)format, ...
|
- (int) writeFormat: (id <String>)format, ...
|
||||||
{
|
{
|
||||||
[self subclassResponsibility:_cmd];
|
[self subclassResponsibility:_cmd];
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (int) readFormat: (id <String>)format
|
||||||
|
arguments: (va_list)arg
|
||||||
|
{
|
||||||
|
[self subclassResponsibility:_cmd];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
- (int) readFormat: (id <String>)format, ...
|
- (int) readFormat: (id <String>)format, ...
|
||||||
{
|
{
|
||||||
[self subclassResponsibility:_cmd];
|
[self subclassResponsibility:_cmd];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue