@@ -10,11 +10,11 @@ */ #import "OFObject.h" /** - * The OFDataArray class is a class for storing arbitrary data in an array. + * \brief A class for storing arbitrary data in an array. * * If you plan to store large hunks of data, you should consider using * OFBigDataArray, which allocates the memory in pages rather than in bytes. */ @interface OFDataArray: OFObject @@ -141,14 +141,16 @@ - removeNItems: (size_t)nitems atIndex: (size_t)index; @end /** + * \brief A class for storing arbitrary big data in an array. + * * The OFBigDataArray class is a class for storing arbitrary data in an array * and is designed to store large hunks of data. Therefore, it allocates * memory in pages rather than a chunk of memory for each item. */ @interface OFBigDataArray: OFDataArray { size_t size; } @end