ObjFW  Diff

Differences From Artifact [7edb49c81c]:

To Artifact [494102f6f4]:


47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 * \return The class pointer
 */
+ (Class)class;

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

/**
 * \param selector The selector which should be checked for respondance
 *
 * \return A boolean whether instances of the class respond to the specified
 *	   selector
 */







|







47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 * \return The class pointer
 */
+ (Class)class;

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

/**
 * \param selector The selector which should be checked for respondance
 *
 * \return A boolean whether instances of the class respond to the specified
 *	   selector
 */
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
 * \return A pointer to the class of the instance
 */
- (Class)class;

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

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







|







111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
 * \return A pointer to the class of the instance
 */
- (Class)class;

/**
 * \return The name of the instance'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;