@@ -25,17 +25,17 @@ */ @interface OFMethod: OFObject { SEL selector; OFString *name; - OFString *typeEncoding; + const char *typeEncoding; } #ifdef OF_HAVE_PROPERTIES @property (readonly) SEL selector; @property (readonly, copy) OFString *name; -@property (readonly, copy) OFString *typeEncoding; +@property (readonly) const char *typeEncoding; #endif /** * \brief Returns the selector of the method. * @@ -53,11 +53,11 @@ /** * \brief Returns the type encoding for the method. * * \return The type encoding for the method */ -- (OFString*)typeEncoding; +- (const char*)typeEncoding; @end /** * \brief A class for introspecting classes. */