(Coder): Make ivars public, so NSGArchiver can get at them.

(Encoder): Likewise.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1486 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-04-19 23:17:52 +00:00
parent f55677d2e5
commit f53895a37a

View file

@ -38,6 +38,7 @@
@interface Coder : NSObject
{
@public
int format_version;
CStream *cstream;
NSMapTable *classname_2_classname; /* for changing class names on r/w */
@ -53,6 +54,7 @@
@interface Encoder : Coder
{
@public
/* xxx in_progress_table should actually be an NSHashTable,
but we are working around a bug right now. */
NSMapTable *in_progress_table; /* objects begun writing, but !finished */