ObjFW  Diff

Differences From Artifact [abb1f691d5]:

To Artifact [0e5ad9eeda]:


18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

/*!
 * @brief An exception indicating that a method or part of it is not
 *        implemented.
 */
@interface OFNotImplementedException: OFException
{
	SEL selector;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly) SEL selector;
#endif

/*!







|







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

/*!
 * @brief An exception indicating that a method or part of it is not
 *        implemented.
 */
@interface OFNotImplementedException: OFException
{
	SEL _selector;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly) SEL selector;
#endif

/*!