mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Documentation tidyups
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13788 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53274007c6
commit
bbc1e817eb
25 changed files with 793 additions and 266 deletions
|
@ -274,6 +274,30 @@
|
|||
va_end(ap);
|
||||
}
|
||||
|
||||
// Managing Zones
|
||||
|
||||
- (NSZone*) objectZone
|
||||
{
|
||||
return NSDefaultMallocZone();
|
||||
}
|
||||
|
||||
- (void) setObjectZone: (NSZone*)zone
|
||||
{
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
// Getting a Version
|
||||
|
||||
- (unsigned int) systemVersion
|
||||
{
|
||||
return (((GNUSTEP_BASE_MAJOR_VERSION * 100)
|
||||
+ GNUSTEP_BASE_MINOR_VERSION) * 100) + GNUSTEP_BASE_SUBMINOR_VERSION;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSCoder (GNUstep)
|
||||
- (void) decodeArrayOfObjCType: (const char*)type
|
||||
count: (unsigned)count
|
||||
at: (void*)buf
|
||||
|
@ -355,26 +379,4 @@
|
|||
{
|
||||
[self encodeValueOfObjCType: @encode(id) at: anObject withName: name];
|
||||
}
|
||||
|
||||
// Managing Zones
|
||||
|
||||
- (NSZone*) objectZone
|
||||
{
|
||||
return NSDefaultMallocZone();
|
||||
}
|
||||
|
||||
- (void) setObjectZone: (NSZone*)zone
|
||||
{
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
// Getting a Version
|
||||
|
||||
- (unsigned int) systemVersion
|
||||
{
|
||||
return (((GNUSTEP_BASE_MAJOR_VERSION * 100)
|
||||
+ GNUSTEP_BASE_MINOR_VERSION) * 100) + GNUSTEP_BASE_SUBMINOR_VERSION;
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue