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