home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / IntegerFormatter.h < prev    next >
Encoding:
Text File  |  1996-04-11  |  192 b   |  10 lines

  1. #import <Foundation/NSFormatter.h>
  2.  
  3. @interface IntegerFormatter : NSFormatter {
  4.     int _min, _max;
  5. }
  6. - (id)initWithMinValue:(int)min maxValue:(int)max;
  7. - (int)minValue;
  8. - (int)maxValue;
  9. @end
  10.