mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 18:40:51 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@21224 72102866-910b-0410-8b05-ffd578937521
11 lines
406 B
Objective-C
11 lines
406 B
Objective-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
|