mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
6d494bfcdf
-Wall still isn't used yet due to a missing method in Array, and overzealous warnings in qfcc, but this covers the necessary fixes.
15 lines
255 B
Objective-C
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
|