quakeforge/ruamoko/scheme/Number.h
Bill Currie 6d494bfcdf Fix a slew of warnings found by -Wall.
-Wall still isn't used yet due to a missing method in Array, and
overzealous warnings in qfcc, but this covers the necessary fixes.
2010-12-16 20:01:49 +09:00

15 lines
255 B
Objective-C

#ifndef __Number_h
#define __Number_h
#include "SchemeObject.h"
@interface Number: SchemeObject
{
integer value;
}
+ (id) newFromInt: (integer) i;
- (id) initWithInt: (integer) i;
- (integer) intValue;
- (string) printForm;
@end
#endif //__Number_h