@@ -23,13 +23,13 @@ /*! * @brief A class for describing a method. */ @interface OFMethod: OFObject { - SEL selector; - OFString *name; - const char *typeEncoding; + SEL _selector; + OFString *_name; + const char *_typeEncoding; } #ifdef OF_HAVE_PROPERTIES @property (readonly) SEL selector; @property (readonly, copy) OFString *name; @@ -61,13 +61,13 @@ /*! * @brief A class for describing an instance variable. */ @interface OFInstanceVariable: OFObject { - OFString *name; - const char *typeEncoding; - ptrdiff_t offset; + OFString *_name; + const char *_typeEncoding; + ptrdiff_t _offset; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *name; @property (readonly) ptrdiff_t offset; @@ -99,15 +99,15 @@ /*! * @brief A class for introspecting classes. */ @interface OFIntrospection: OFObject { - OFMutableArray *classMethods; - OFMutableArray *instanceMethods; - OFMutableArray *instanceVariables; + OFMutableArray *_classMethods; + OFMutableArray *_instanceMethods; + OFMutableArray *_instanceVariables; #ifdef OF_HAVE_PROPERTIES - OFMutableArray *properties; + OFMutableArray *_properties; #endif } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFArray *classMethods;