@@ -28,14 +28,24 @@ { OFString *_sourcePath, *_destinationPath; int _errNo; } -#ifdef OF_HAVE_PROPERTIES -@property (readonly, copy) OFString *sourcePath, *destinationPath; +/*! + * The source for the symlink. + */ +@property (readonly, copy) OFString *sourcePath; + +/*! + * The destination for the symlink. + */ +@property (readonly, copy) OFString *destinationPath; + +/*! + * The errno of the error that occurred. + */ @property (readonly) int errNo; -#endif /*! * @brief Creates a new, autoreleased create symbolic link failed exception. * * @param sourcePath The source for the symbolic link @@ -57,28 +67,7 @@ * @return An initialized create symbolic link failed exception */ - initWithSourcePath: (OFString*)sourcePath destinationPath: (OFString*)destinationPath errNo: (int)errNo; - -/*! - * @brief Returns a string with the source for the symlink. - * - * @return A string with the source for the symlink - */ -- (OFString*)sourcePath; - -/*! - * @brief Returns a string with the destination for the symlink. - * - * @return A string with the destination for the symlink - */ -- (OFString*)destinationPath; - -/*! - * @brief Returns the errno of the error that occurred. - * - * @return The errno of the error that occurred - */ -- (int)errNo; @end #endif