mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-22 19:01:04 +00:00
12 lines
406 B
C
12 lines
406 B
C
|
#include <Foundation/NSArray.h>
|
||
|
/* since we don't really have blocks and i don't feel like including them.. */
|
||
|
@interface NSArray (SelectorStuff)
|
||
|
- (NSArray *) arrayWithObjectsRespondingYesToSelector:(SEL)selector;
|
||
|
- (NSArray *) arrayWithObjectsRespondingYesToSelector:(SEL)selector
|
||
|
withObject:(id)argument;
|
||
|
@end
|
||
|
|
||
|
@interface NSObject(GDL2PaletteAdditions)
|
||
|
- (BOOL) isKindOfClasses:(NSArray *)classes;
|
||
|
@end
|