mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
30 lines
986 B
C
30 lines
986 B
C
|
#ifndef __qwaq_garray_h
|
||
|
#define __qwaq_garray_h
|
||
|
|
||
|
#include <Array.h>
|
||
|
|
||
|
typedef BOOL condition_func (id object, void *data);
|
||
|
typedef BOOL condition_func2 (id object, void *anObject, void *data);
|
||
|
|
||
|
@interface Array (Group)
|
||
|
- (void) makeObjectsPerformSelector: (SEL)selector
|
||
|
if: (condition_func)condition
|
||
|
with: (void *)data;
|
||
|
- (void) makeObjectsPerformSelector: (SEL)selector
|
||
|
withObject: (void *)anObject
|
||
|
if: (condition_func2)condition
|
||
|
with: (void *)data;
|
||
|
- (void) makeReversedObjectsPerformSelector: (SEL)selector;
|
||
|
- (void) makeReversedObjectsPerformSelector: (SEL)selector
|
||
|
withObject: (void *)anObject;
|
||
|
- (void) makeReversedObjectsPerformSelector: (SEL)selector
|
||
|
if: (condition_func)condition
|
||
|
with: (void *)data;
|
||
|
- (void) makeReversedObjectsPerformSelector: (SEL)selector
|
||
|
withObject: (void *)anObject
|
||
|
if: (condition_func2)condition
|
||
|
with: (void *)data;
|
||
|
@end
|
||
|
|
||
|
#endif//__qwaq_garray_h
|