Differences From Artifact [7460e3daf6]:
- File
src/OFListObject.h
— part of check-in
[7a49441656]
at
2008-10-09 00:25:31
on branch trunk
— Multiple changes, see details.
* Use config.h.
* Check whether to use sel_get_name or sel_getName.
* Rename freeWithData to freeIncludingData. (user: js, size: 624) [annotate] [blame] [check-ins using]
To Artifact [b3500fd953]:
- File src/OFListObject.h — part of check-in [8ae4c59cd6] at 2008-10-26 20:54:54 on branch trunk — Return self when we have no return value. This allows nesting. (user: js, size: 612) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
20 21 22 23 24 25 26 | + newWithData: (void*)ptr; - initWithData: (void*)ptr; - freeIncludingData; - (void*)data; - (OFListObject*)next; - (OFListObject*)prev; | | | | 20 21 22 23 24 25 26 27 28 29 | + newWithData: (void*)ptr; - initWithData: (void*)ptr; - freeIncludingData; - (void*)data; - (OFListObject*)next; - (OFListObject*)prev; - setNext: (OFListObject*)ptr; - setPrev: (OFListObject*)ptr; @end |