mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(zone): New ivar.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@826 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
aae0ebd2b7
commit
ee9b0f15c9
2 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,8 @@
|
|||
@class Stack;
|
||||
@class Array; /* xxx Change this to "Set" */
|
||||
|
||||
/* xxx Should I split this into Encoder and Decoder classes? */
|
||||
|
||||
@interface Coder : NSObject <Encoding, Decoding>
|
||||
{
|
||||
int format_version;
|
||||
|
@ -46,6 +48,7 @@
|
|||
Dictionary *forward_object_table; /* table of forward references */
|
||||
Array *in_progress_table; /* objects started r/w, but !finished */
|
||||
int interconnected_stack_height; /* number of nested root objects */
|
||||
NSZone *zone;
|
||||
}
|
||||
|
||||
/* Encoding */
|
||||
|
|
|
@ -34,6 +34,8 @@
|
|||
@class Stack;
|
||||
@class Array; /* xxx Change this to "Set" */
|
||||
|
||||
/* xxx Should I split this into Encoder and Decoder classes? */
|
||||
|
||||
@interface Coder : NSObject <Encoding, Decoding>
|
||||
{
|
||||
int format_version;
|
||||
|
@ -46,6 +48,7 @@
|
|||
Dictionary *forward_object_table; /* table of forward references */
|
||||
Array *in_progress_table; /* objects started r/w, but !finished */
|
||||
int interconnected_stack_height; /* number of nested root objects */
|
||||
NSZone *zone;
|
||||
}
|
||||
|
||||
/* Encoding */
|
||||
|
|
Loading…
Reference in a new issue