home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Yap / IntegerFormatter.h < prev    next >
Text File  |  1996-04-10  |  192b  |  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.