mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
b336ba79f1
However, it still won't work (no gorm, commented code, ...). Borrow an old implementation of the Storage class until I figure out just what it's being used for.
16 lines
234 B
Objective-C
16 lines
234 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
|