mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +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 Dictionary;
|
||||
@class Stack;
|
||||
@class Set;
|
||||
@class Array;
|
||||
|
||||
@interface Coder : NSObject <Encoding, Decoding>
|
||||
{
|
||||
|
@ -41,9 +41,9 @@
|
|||
BOOL doing_root_object;
|
||||
Dictionary *object_table; /* read/written objects */
|
||||
Dictionary *const_ptr_table; /* read/written const *'s */
|
||||
Stack *root_object_tables; /* Stack of Dicts for interconnt'd objs */
|
||||
Stack *forward_object_tables; /* Stack of Dictionaries for frwd refs */
|
||||
Set *in_progress_table; /* objects started r/w, but !finished */
|
||||
Dictionary *root_object_table; /* table of interconnected objects */
|
||||
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 */
|
||||
|
||||
/* Not all these ivars are really necessary. I fixed a bug with
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue