mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
(Coder): Renamed ivars from root_object_tables to root_object_table,
from forward_object_tables to forward_object_table; changed classes from Stack (of Dictionary's) to Dictionary. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@625 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e306423619
commit
fbb93ba95b
2 changed files with 8 additions and 8 deletions
|
@ -30,7 +30,7 @@
|
||||||
@class Stream;
|
@class Stream;
|
||||||
@class Dictionary;
|
@class Dictionary;
|
||||||
@class Stack;
|
@class Stack;
|
||||||
@class Set;
|
@class Array;
|
||||||
|
|
||||||
@interface Coder : NSObject <Encoding, Decoding>
|
@interface Coder : NSObject <Encoding, Decoding>
|
||||||
{
|
{
|
||||||
|
@ -41,9 +41,9 @@
|
||||||
BOOL doing_root_object;
|
BOOL doing_root_object;
|
||||||
Dictionary *object_table; /* read/written objects */
|
Dictionary *object_table; /* read/written objects */
|
||||||
Dictionary *const_ptr_table; /* read/written const *'s */
|
Dictionary *const_ptr_table; /* read/written const *'s */
|
||||||
Stack *root_object_tables; /* Stack of Dicts for interconnt'd objs */
|
Dictionary *root_object_table; /* table of interconnected objects */
|
||||||
Stack *forward_object_tables; /* Stack of Dictionaries for frwd refs */
|
Dictionary *forward_object_table; /* table of forward references */
|
||||||
Set *in_progress_table; /* objects started r/w, but !finished */
|
Array *in_progress_table; /* objects started r/w, but !finished */
|
||||||
int interconnected_stack_height; /* number of nested root objects */
|
int interconnected_stack_height; /* number of nested root objects */
|
||||||
|
|
||||||
/* Not all these ivars are really necessary. I fixed a bug with
|
/* Not all these ivars are really necessary. I fixed a bug with
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
@class Stream;
|
@class Stream;
|
||||||
@class Dictionary;
|
@class Dictionary;
|
||||||
@class Stack;
|
@class Stack;
|
||||||
@class Set;
|
@class Array;
|
||||||
|
|
||||||
@interface Coder : NSObject <Encoding, Decoding>
|
@interface Coder : NSObject <Encoding, Decoding>
|
||||||
{
|
{
|
||||||
|
@ -41,9 +41,9 @@
|
||||||
BOOL doing_root_object;
|
BOOL doing_root_object;
|
||||||
Dictionary *object_table; /* read/written objects */
|
Dictionary *object_table; /* read/written objects */
|
||||||
Dictionary *const_ptr_table; /* read/written const *'s */
|
Dictionary *const_ptr_table; /* read/written const *'s */
|
||||||
Stack *root_object_tables; /* Stack of Dicts for interconnt'd objs */
|
Dictionary *root_object_table; /* table of interconnected objects */
|
||||||
Stack *forward_object_tables; /* Stack of Dictionaries for frwd refs */
|
Dictionary *forward_object_table; /* table of forward references */
|
||||||
Set *in_progress_table; /* objects started r/w, but !finished */
|
Array *in_progress_table; /* objects started r/w, but !finished */
|
||||||
int interconnected_stack_height; /* number of nested root objects */
|
int interconnected_stack_height; /* number of nested root objects */
|
||||||
|
|
||||||
/* Not all these ivars are really necessary. I fixed a bug with
|
/* Not all these ivars are really necessary. I fixed a bug with
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue