mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Header reorganizsateion - Please refer to ChangeLog
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17407 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9cc6c39319
commit
ac30183cd6
238 changed files with 694 additions and 544 deletions
98
Headers/Foundation/NSScanner.h
Normal file
98
Headers/Foundation/NSScanner.h
Normal file
|
@ -0,0 +1,98 @@
|
|||
/* 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., 59 Temple Place, Suite 330, 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 */
|
Loading…
Add table
Add a link
Reference in a new issue