19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@class OFStream;
/*!
* @brief An exception indicating that setting an option for a stream failed.
*/
@interface OFSetOptionFailedException: OFException
{
OFStream *stream;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFStream *stream;
#endif
/*!
|
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@class OFStream;
/*!
* @brief An exception indicating that setting an option for a stream failed.
*/
@interface OFSetOptionFailedException: OFException
{
OFStream *_stream;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFStream *stream;
#endif
/*!
|