Remove ivars, the behavior code now handles this.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@957 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-02-22 15:58:32 +00:00
parent 2108553cab
commit 095a53d687
2 changed files with 2 additions and 38 deletions

View file

@ -1,5 +1,5 @@
/* Interface to concrete implementation of NSDictionary based on GNU Array
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: April 1995
@ -30,23 +30,9 @@
#include <objects/elt.h>
@interface NSGDictionary : NSDictionary
{
/* For now, these must match the instance variables in objects/Dictionary.h.
This will change. */
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
int (*_comparison_function)(elt,elt);
}
@end
@interface NSGMutableDictionary : NSMutableDictionary
{
/* For now, these must match the instance variables in objects/Array.h.
This will change. */
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
int (*_comparison_function)(elt,elt);
}
@end
#endif /* __NSGDictionary_h_OBJECTS_INCLUDE */

View file

@ -1,5 +1,5 @@
/* Interface to concrete implementation of NSSet based on GNU Array
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: April 1995
@ -31,34 +31,12 @@
#include <objects/elt.h>
@interface NSGSet : NSSet
{
/* For now, these must match the instance variables in objects/Set.h.
This will change. */
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
int (*_comparison_function)(elt,elt);
}
@end
@interface NSGMutableSet : NSMutableSet
{
/* For now, these must match the instance variables in objects/Set.h.
This will change. */
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
int (*_comparison_function)(elt,elt);
}
@end
@interface NSGCountedSet : NSCountedSet
{
/* For now, these must match the instance variables in objects/Bag.h.
This will change. */
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
int (*_comparison_function)(elt,elt);
unsigned int count;
}
@end