mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
16 lines
271 B
Objective-C
16 lines
271 B
Objective-C
#ifndef DictList_h
|
|
#define DictList_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface DictList:NSMutableArray
|
|
{
|
|
NSMutableArray *array;
|
|
}
|
|
|
|
-initListFromFile:(FILE *) fp;
|
|
-writeListFile:(const char *) filename;
|
|
-(id) findDictKeyword:(const char *) key;
|
|
|
|
@end
|
|
#endif // DictList_h
|