mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
14 lines
236 B
Objective-C
14 lines
236 B
Objective-C
#ifndef DictList_h
|
|
#define DictList_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@ interface DictList:NSMutableArray {
|
|
}
|
|
|
|
-initListFromFile:(FILE *) fp;
|
|
-writeListFile:(char *) filename;
|
|
-(id) findDictKeyword:(char *) key;
|
|
|
|
@end
|
|
#endif // DictList_h
|