home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / Interval.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-30  |  320 b   |  16 lines

  1. #include <stdio.h>
  2. #import <appkit/appkit.h>
  3.  
  4. @interface Interval:Object
  5. {
  6.    unsigned long from;
  7.    unsigned long to;
  8. }
  9. - (BOOL)isIn:(unsigned long)number;
  10. - (unsigned long)lowerBound;
  11. - (unsigned long)upperBound;
  12. - initWithLower:(unsigned long)low upper:(unsigned long)high;
  13. - dumpAsAsciiIn:(NXStream *)aStream;
  14.  
  15. @end
  16.