ObjFW  Diff

Differences From Artifact [0abdd32fbd]:

To Artifact [fdfddc2862]:


20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

/*!
 * @brief An exception indicating that a thread is still waiting for a
 *	  condition.
 */
@interface OFConditionStillWaitingException: OFException
{
	OFCondition *condition;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFCondition *condition;
#endif

/*!







|







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

/*!
 * @brief An exception indicating that a thread is still waiting for a
 *	  condition.
 */
@interface OFConditionStillWaitingException: OFException
{
	OFCondition *_condition;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFCondition *condition;
#endif

/*!