home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
IntegerFormatter.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1996-04-11
|
192 b
|
10 lines
#import <Foundation/NSFormatter.h>
@interface IntegerFormatter : NSFormatter {
int _min, _max;
}
- (id)initWithMinValue:(int)min maxValue:(int)max;
- (int)minValue;
- (int)maxValue;
@end