2010-09-01 10:37:10 +00:00
|
|
|
#ifndef DictList_h
|
2010-09-11 08:35:25 +00:00
|
|
|
#define DictList_h
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2003-05-06 21:52:58 +00:00
|
|
|
#include <AppKit/AppKit.h>
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-29 20:09:11 +00:00
|
|
|
@interface DictList: NSMutableArray
|
2010-09-11 16:41:18 +00:00
|
|
|
{
|
2010-09-29 20:09:11 +00:00
|
|
|
NSMutableArray *array;
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 20:09:11 +00:00
|
|
|
- (id) initListFromFile: (FILE *)fp;
|
|
|
|
- (id) writeListFile: (const char *)filename;
|
|
|
|
- (id) findDictKeyword: (const char *)key;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
@end
|
2010-09-11 10:06:04 +00:00
|
|
|
#endif // DictList_h
|