19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@class OFThread;
/*!
* @brief An exception indicating that a thread is still running.
*/
@interface OFThreadStillRunningException: OFException
{
OFThread *thread;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFThread *thread;
#endif
/*!
|
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@class OFThread;
/*!
* @brief An exception indicating that a thread is still running.
*/
@interface OFThreadStillRunningException: OFException
{
OFThread *_thread;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFThread *thread;
#endif
/*!
|