ObjFW  Diff

Differences From Artifact [82b71eb5d5]:

To Artifact [2a51330d11]:


83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
 * \return The class
 */
+ (Class)class;

/**
 * \return The name of the class as a C string
 */
+ (const char*)className;

/**
 * \param class_ The class which is checked for being a superclass
 * \return A boolean whether the class class is a subclass of the specified
 *	   class
 */
+ (BOOL)isSubclassOfClass: (Class)class_;







|







83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
 * \return The class
 */
+ (Class)class;

/**
 * \return The name of the class as a C string
 */
+ (OFString*)className;

/**
 * \param class_ The class which is checked for being a superclass
 * \return A boolean whether the class class is a subclass of the specified
 *	   class
 */
+ (BOOL)isSubclassOfClass: (Class)class_;
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207

/**
 * \return The class of the object
 */
- (Class)class;

/**
 * \return The name of the object's class as a C string
 */
- (const char*)className;

/**
 * \param class_ The class whose kind is checked
 * \return A boolean whether the object is of the specified kind
 */
- (BOOL)isKindOfClass: (Class)class_;








|

|







191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207

/**
 * \return The class of the object
 */
- (Class)class;

/**
 * \return The name of the object's class.
 */
- (OFString*)className;

/**
 * \param class_ The class whose kind is checked
 * \return A boolean whether the object is of the specified kind
 */
- (BOOL)isKindOfClass: (Class)class_;