ObjFW  Diff

Differences From Artifact [0f97f0d9d0]:

To Artifact [5c52be14f5]:


403
404
405
406
407
408
409

410
411
412
413
414
415
416
417
 * similar as if the specified class is the superclass of the receiver.
 *
 * All methods from the superclasses of the specified class will also be added.
 *
 * If the specified class is a superclass of the receiving class, nothing is
 * done.
 *

 * The specified class may not use instance variables and has to use accessors.
 *
 * \param class The class from which the instance methods should be inherited
 */
+ (void)inheritMethodsFromClass: (Class)class;

/**
 * \brief Initializes an already allocated object.







>
|







403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
 * similar as if the specified class is the superclass of the receiver.
 *
 * All methods from the superclasses of the specified class will also be added.
 *
 * If the specified class is a superclass of the receiving class, nothing is
 * done.
 *
 * The methods which will be added from the specified class are not allowed to
 * use super or access instance variables, instead they have to use accessors.
 *
 * \param class The class from which the instance methods should be inherited
 */
+ (void)inheritMethodsFromClass: (Class)class;

/**
 * \brief Initializes an already allocated object.