@@ -85,63 +85,63 @@ /** * Adds an item to the OFDataArray. * * \param item A pointer to an arbitrary item */ -- addItem: (void*)item; +- (void)addItem: (void*)item; /** * Adds an item to the OFDataArray at the specified index. * * \param item A pointer to an arbitrary item * \param index The index where the item should be added */ -- addItem: (void*)item - atIndex: (size_t)index; +- (void)addItem: (void*)item + atIndex: (size_t)index; /** * Adds items from a C array to the OFDataArray. * * \param nitems The number of items to add * \param carray A C array containing the items to add */ -- addNItems: (size_t)nitems - fromCArray: (void*)carray; +- (void)addNItems: (size_t)nitems + fromCArray: (void*)carray; /** * Adds items from a C array to the OFDataArray at the specified index. * * \param nitems The number of items to add * \param carray A C array containing the items to add * \param index The index where the items should be added */ -- addNItems: (size_t)nitems - fromCArray: (void*)carray - atIndex: (size_t)index; +- (void)addNItems: (size_t)nitems + fromCArray: (void*)carray + atIndex: (size_t)index; /** * Removes the item at the specified index. * * \param index The index of the item to remove */ -- removeItemAtIndex: (size_t)index; +- (void)removeItemAtIndex: (size_t)index; /** * Removes the specified amount of items from the end of the OFDataArray. * * \param nitems The number of items to remove */ -- removeNItems: (size_t)nitems; +- (void)removeNItems: (size_t)nitems; /** * Removes the specified amount of items at the specified index. * * \param nitems The number of items to remove * \param index The index at which the items are removed */ -- removeNItems: (size_t)nitems - atIndex: (size_t)index; +- (void)removeNItems: (size_t)nitems + atIndex: (size_t)index; @end /** * \brief A class for storing arbitrary big data in an array. *