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-11 23:14:08 +00:00
|
|
|
@interface DictList:NSMutableArray
|
2010-09-11 16:41:18 +00:00
|
|
|
{
|
2010-09-12 07:25:25 +00:00
|
|
|
NSMutableArray *array;
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-initListFromFile:(FILE *) fp;
|
2010-09-28 09:41:38 +00:00
|
|
|
-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
|