00001 00014 #ifndef NSMUTABLESTRING_H_INCLUDED 00015 #define NSMUTABLESTRING_H_INCLUDED 00016 00017 #include <Cacao/nsstring.h> 00018 00024 @interface NSMutableString : NSString 00025 { 00026 } 00027 00035 - init ; 00036 00042 - (void) dealloc ; 00043 00050 - (void) setString: (NSString *) src ; 00051 00059 - (void) replaceCharactersInRange: (NSRange) range 00060 byString: (NSString *) substr ; 00061 00062 @end 00063 00064 #endif /* NSMUTABLESTRING_H_INCLUDED */ 00065