@@ -23,11 +23,11 @@ * @brief A class for parsing the program options specified on the command line. */ @interface OFOptionsParser: OFObject { of_unichar_t *_options; - OFArray *_arguments; + OFArray OF_GENERIC(OFString*) *_arguments; size_t _index, _subIndex; of_unichar_t _lastOption; OFString *_argument; bool _done; } @@ -87,7 +87,7 @@ /*! * @brief Returns the arguments following the last option. * * @return The arguments following the last option */ -- (OFArray*)remainingArguments; +- (OFArray OF_GENERIC(OFString*)*)remainingArguments; @end