source: releases/ICeCoffEE/1.4.4b1/ICeCoffEE/ICeCoffEEScanner.h@ 336

Last change on this file since 336 was 66, checked in by Nicholas Riley, 21 years ago

Initial import.

File size: 618 bytes
Line 
1//
2// ICeCoffEEScanner.h
3// ICeCoffEE
4//
5// Created by Nicholas Riley on Fri Feb 08 2002.
6// Copyright (c) 2002 Nicholas Riley. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11
12@interface ICeCoffEEScanner : NSObject {
13 NSString *source;
14 NSMutableString *dest;
15 int length;
16 unsigned loc;
17}
18
19- (id)initWithSource:(NSString *)aSource destination:(NSMutableString *)aDest;
20- (void)breakWithString:(NSString *)breakString atWidth:(unsigned)width;
21- (BOOL)appendUpToString:(NSString *)string;
22- (void)appendUpToEnd;
23- (BOOL)isAtEnd;
24- (unsigned)scanLocation;
25- (unsigned)remainingLength;
26
27@end
Note: See TracBrowser for help on using the repository browser.