@@ -12,19 +12,17 @@ #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: */