@@ -19,10 +19,12 @@ #import "OFEnumerator.h" #import "OFSerialization.h" typedef struct of_list_object_t of_list_object_t; /*! + * @struct of_list_object_t OFList.h ObjFW/OFList.h + * * @brief A list object. * * A struct that contains a pointer to the next list object, the previous list * object and the object. */ @@ -34,10 +36,12 @@ /// The object for the list object __unsafe_unretained id object; }; /*! + * @class OFList OFList.h ObjFW/OFList.h + * * @brief A class which provides easy to use double-linked lists. */ @interface OFList: OFObject { of_list_object_t *_firstListObject;