@@ -27,14 +27,19 @@ { void *_pointer; id _object; } -#ifdef OF_HAVE_PROPERTIES +/*! + * A pointer to the memory which is not part of the object. + */ @property (readonly) void *pointer; + +/*! + * The object which the memory is not part of. + */ @property (readonly, retain) id object; -#endif /*! * @brief Creates a new, autoreleased memory not part of object exception. * * @param pointer A pointer to the memory that is not part of the object @@ -51,20 +56,6 @@ * @param object The object which the memory is not part of * @return An initialized memory not part of object exception */ - initWithPointer: (void*)pointer object: (id)object; - -/*! - * @brief Returns 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; - -/*! - * @brief Returns the object which the memory is not part of. - * - * @return The object which the memory is not part of - */ -- (id)object; @end