ObjFW  Diff

Differences From Artifact [9afbf70556]:

To Artifact [ee8a3d67d3]:


218
219
220
221
222
223
224











 */
@protocol OFCopying
/**
 * \return A copy of the object
 */
- (id)copy;
@end


















>
>
>
>
>
>
>
>
>
>
>
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
 */
@protocol OFCopying
/**
 * \return A copy of the object
 */
- (id)copy;
@end

/**
 * This protocol is implemented by objects that can be mutable and immutable
 * and allows returning a mutable copy.
 */
@protocol OFMutableCopying
/**
 * \return A copy of the object
 */
- (id)mutableCopy;
@end