// // ICeCoffEEScanner.h // ICeCoffEE // // Created by Nicholas Riley on Fri Feb 08 2002. // Copyright (c) 2002 Nicholas Riley. All rights reserved. // #import @interface ICeCoffEEScanner : NSObject { NSString *source; NSMutableString *dest; int length; unsigned loc; } - (id)initWithSource:(NSString *)aSource destination:(NSMutableString *)aDest; - (void)breakWithString:(NSString *)breakString atWidth:(unsigned)width; - (BOOL)appendUpToString:(NSString *)string; - (void)appendUpToEnd; - (BOOL)isAtEnd; - (unsigned)scanLocation; - (unsigned)remainingLength; @end