1 /* 2 GSTextStorage.h 3 4 Implementation of concrete subclass of a string class with attributes 5 6 Copyright (C) 1999 Free Software Foundation, Inc. 7 8 Based on code by: ANOQ of the sun <anoq@vip.cybercity.dk> 9 Written by: Richard Frith-Macdonald <richard@brainstorm.co.uk> 10 Date: July 1999 11 12 This file is part of GNUStep-gui 13 14 This library is free software; you can redistribute it and/or 15 modify it under the terms of the GNU Lesser General Public 16 License as published by the Free Software Foundation; either 17 version 2 of the License, or (at your option) any later version. 18 19 This library is distributed in the hope that it will be useful, 20 but WITHOUT ANY WARRANTY; without even the implied warranty of 21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 22 Lesser General Public License for more details. 23 24 You should have received a copy of the GNU Lesser General Public 25 License along with this library; see the file COPYING.LIB. 26 If not, see <http://www.gnu.org/licenses/> or write to the 27 Free Software Foundation, 51 Franklin Street, Fifth Floor, 28 Boston, MA 02110-1301, USA. 29 */ 30 31 #import "AppKit/NSTextStorage.h" 32 33 @class NSMutableString; 34 @class NSMutableArray; 35 36 @interface GSTextStorage : NSTextStorage 37 { 38 NSMutableString *_textChars; 39 NSMutableArray *_infoArray; 40 NSString *_textProxy; 41 } 42 @end 43 44