@@ -14,6 +14,19 @@ /** * The OFMutableArray class provides a class for storing, adding and removing * objects in an array. */ @interface OFMutableArray: OFArray +/** + * Adds an object to the OFDataArray. + * + * \param obj An object to add + */ +- addObject: (OFObject*)obj; + +/** + * Removes the specified amount of objects from the end of the OFDataArray. + * + * \param nobjects The number of objects to remove + */ +- removeNObjects: (size_t)nobjects; @end