ObjFW  Diff

Differences From Artifact [93a96d7531]:

To Artifact [08759996d3]:


10
11
12
13
14
15
16
17
18


19
20
21
22
23
24
25
26
27


28
29
30
10
11
12
13
14
15
16


17
18
19
20
21
22
23
24
25


26
27
28









-
-
+
+







-
-
+
+

-
-
 */

#import "OFObject.h"
#import "OFListObject.h"

@interface OFList: OFObject
{
	OFListObject	*first;
	OFListObject	*last;
	OFListObject *first;
	OFListObject *last;
}

- init;
- free;
- freeWithData;
- (OFListObject*)first;
- (OFListObject*)last;
- (void)add:(OFListObject*)ptr;
- (void)addNew:(void*)ptr;
- (void)add: (OFListObject*)ptr;
- (void)addNew: (void*)ptr;
@end

/* vim: se syn=objc: */