mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-29 19:41:00 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21245 72102866-910b-0410-8b05-ffd578937521
98 lines
2.8 KiB
Objective-C
98 lines
2.8 KiB
Objective-C
/* Definitions for NSScanner class
|
|
Copyright (C) 1996,1999 Free Software Foundation, Inc.
|
|
|
|
Author: Eric Norum <eric@skatter.usask.ca>
|
|
Created: 1996
|
|
|
|
This file is part of the GNUstep Objective-C Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
|
*/
|
|
|
|
#ifndef __NSScanner_h_GNUSTEP_INCLUDE
|
|
#define __NSScanner_h_GNUSTEP_INCLUDE
|
|
|
|
#include <Foundation/NSDecimal.h>
|
|
#include <Foundation/NSDictionary.h>
|
|
#include <Foundation/NSCharacterSet.h>
|
|
|
|
/*
|
|
* NSScanner class
|
|
*/
|
|
@interface NSScanner : NSObject <NSCopying>
|
|
{
|
|
@private
|
|
NSString *_string;
|
|
NSCharacterSet *_charactersToBeSkipped;
|
|
BOOL (*_skipImp)(NSCharacterSet*, SEL, unichar);
|
|
NSDictionary *_locale;
|
|
unsigned int _scanLocation;
|
|
unichar _decimal;
|
|
BOOL _caseSensitive;
|
|
BOOL _isUnicode;
|
|
}
|
|
|
|
/*
|
|
* Creating an NSScanner
|
|
*/
|
|
+ (id) localizedScannerWithString: (NSString*)aString;
|
|
+ (id) scannerWithString: (NSString*)aString;
|
|
- (id) initWithString: (NSString*)aString;
|
|
|
|
/*
|
|
* Getting an NSScanner's string
|
|
*/
|
|
- (NSString*) string;
|
|
|
|
/*
|
|
* Configuring an NSScanner
|
|
*/
|
|
- (unsigned) scanLocation;
|
|
- (void) setScanLocation: (unsigned int)anIndex;
|
|
|
|
- (BOOL) caseSensitive;
|
|
- (void) setCaseSensitive: (BOOL)flag;
|
|
|
|
- (NSCharacterSet*) charactersToBeSkipped;
|
|
- (void) setCharactersToBeSkipped: (NSCharacterSet *)aSet;
|
|
|
|
- (NSDictionary*)locale;
|
|
- (void)setLocale:(NSDictionary*)localeDictionary;
|
|
|
|
/*
|
|
* Scanning a string
|
|
*/
|
|
- (BOOL) scanInt: (int*)value;
|
|
- (BOOL) scanHexInt: (unsigned int*)value;
|
|
- (BOOL) scanLongLong: (long long*)value;
|
|
- (BOOL) scanFloat: (float*)value;
|
|
- (BOOL) scanDouble: (double*)value;
|
|
- (BOOL) scanString: (NSString*)string intoString: (NSString**)value;
|
|
- (BOOL) scanCharactersFromSet: (NSCharacterSet*)aSet
|
|
intoString: (NSString**)value;
|
|
- (BOOL) scanUpToString: (NSString*)string intoString: (NSString**)value;
|
|
- (BOOL) scanUpToCharactersFromSet: (NSCharacterSet*)aSet
|
|
intoString: (NSString**)value;
|
|
- (BOOL) isAtEnd;
|
|
|
|
#ifndef NO_GNUSTEP
|
|
- (BOOL) scanRadixUnsignedInt: (unsigned int*)value;
|
|
#endif
|
|
#ifndef STRICT_OPENSTEP
|
|
- (BOOL) scanDecimal: (NSDecimal*)value;
|
|
#endif
|
|
@end
|
|
|
|
#endif /* __NSScanner_h_GNUSTEP_INCLUDE */
|