blob: 025328bcbb7324982af7dca98cc731fca57080f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef DICTDATA_H
# define DICTDATA_H
#include "Data.h"
@interface DictData: DataObject
{
id *data;
int numChildren;
int curObj;
}
-free;
-addChild: child;
-delChild: (const char *)keyName;
-findChild: (const char *)keyName;
-firstObject;
-nextObject;
@end
#endif
|