mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 03:50:46 +00:00
Remove ivars; class_add_behavior now handles instance_size match.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@840 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
74187fde91
commit
078b0f6861
1 changed files with 1 additions and 21 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* Interface to concrete implementation of NSArray based on GNU Array
|
/* Interface to concrete implementation of NSArray 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>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: March 1995
|
Date: March 1995
|
||||||
|
@ -29,29 +29,9 @@
|
||||||
#include <objects/elt.h>
|
#include <objects/elt.h>
|
||||||
|
|
||||||
@interface NSGArray : NSArray
|
@interface NSGArray : NSArray
|
||||||
{
|
|
||||||
/* For now, these must match the instance variables in objects/Array.h.
|
|
||||||
This will change. */
|
|
||||||
int (*_comparison_function)(elt,elt);
|
|
||||||
elt *_contents_array;
|
|
||||||
unsigned int _count;
|
|
||||||
unsigned int _capacity;
|
|
||||||
unsigned int _grow_factor;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@interface NSGMutableArray : NSMutableArray
|
@interface NSGMutableArray : NSMutableArray
|
||||||
{
|
|
||||||
/* For now, these must match the instance variables in objects/Array.h.
|
|
||||||
This will change. */
|
|
||||||
int (*_comparison_function)(elt,elt);
|
|
||||||
elt *_contents_array;
|
|
||||||
unsigned int _count;
|
|
||||||
unsigned int _capacity;
|
|
||||||
unsigned int _grow_factor;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
#endif /* __NSGArray_h_OBJECTS_INCLUDE */
|
#endif /* __NSGArray_h_OBJECTS_INCLUDE */
|
||||||
|
|
Loading…
Reference in a new issue