@@ -1,7 +1,7 @@ /* - * Copyright (c) 2008 - 2009 + * Copyright (c) 2008 - 2010 * Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the @@ -10,25 +10,26 @@ */ #import "OFObject.h" /** + * \brief A list object. + * * A struct that contains a pointer to the next list object, the previous list * object and the object. */ -typedef struct __of_list_object -{ +typedef struct __of_list_object { /// A pointer to the next list object in the list struct __of_list_object *next; /// A pointer to the previous list object in the list struct __of_list_object *prev; /// The object for the list object id object; } of_list_object_t; /** - * The OFList class provides easy to use double-linked lists. + * \brief A class which provides easy to use double-linked lists. */ @interface OFList: OFObject { of_list_object_t *first; of_list_object_t *last;