mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 12:40:35 +00:00
0e5cd14829
Add return-type information to all methods, split up lines properly where I could find them, and ran the whole thing through uncrustify. Looks purty now. :)
16 lines
286 B
Objective-C
16 lines
286 B
Objective-C
#ifndef DictList_h
|
|
#define DictList_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface DictList: NSMutableArray
|
|
{
|
|
NSMutableArray *array;
|
|
}
|
|
|
|
- (id) initListFromFile: (FILE *)fp;
|
|
- (id) writeListFile: (const char *)filename;
|
|
- (id) findDictKeyword: (const char *)key;
|
|
|
|
@end
|
|
#endif // DictList_h
|