@@ -14,12 +14,12 @@ * file. */ #import "OFException.h" -/** - * \brief An exception indicating the given memory is not part of the object. +/*! + * @brief An exception indicating the given memory is not part of the object. */ @interface OFMemoryNotPartOfObjectException: OFException { void *pointer; } @@ -26,28 +26,28 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly) void *pointer; #endif -/** - * \param class_ The class of the object which caused the exception - * \param ptr A pointer to the memory that is not part of the object - * \return A new memory not part of object exception +/*! + * @param class_ The class of the object which caused the exception + * @param ptr A pointer to the memory that is not part of the object + * @return A new memory not part of object exception */ + (instancetype)exceptionWithClass: (Class)class_ pointer: (void*)ptr; -/** +/*! * Initializes an already allocated memory not part of object exception. * - * \param class_ The class of the object which caused the exception - * \param ptr A pointer to the memory that is not part of the object - * \return An initialized memory not part of object exception + * @param class_ The class of the object which caused the exception + * @param ptr A pointer to the memory that is not part of the object + * @return An initialized memory not part of object exception */ - initWithClass: (Class)class_ pointer: (void*)ptr; -/** - * \return A pointer to the memory which is not part of the object +/*! + * @return A pointer to the memory which is not part of the object */ - (void*)pointer; @end