25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
OFString *path;
mode_t mode;
int errNo;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, nonatomic) OFString *path;
@property (readonly) mode_t mode;
@property (readonly) int errNo;
#endif
/**
* \param class_ The class of the object which caused the exception
* \param path The path of the file
|
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
OFString *path;
mode_t mode;
int errNo;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, assign) OFString *path;
@property (readonly) mode_t mode;
@property (readonly) int errNo;
#endif
/**
* \param class_ The class of the object which caused the exception
* \param path The path of the file
|