mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
15 lines
239 B
Objective-C
15 lines
239 B
Objective-C
#ifndef __Number_h
|
|
#define __Number_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Number: SchemeObject
|
|
{
|
|
int value;
|
|
}
|
|
+ (id) newFromInt: (int) i;
|
|
- (id) initWithInt: (int) i;
|
|
- (int) intValue;
|
|
- (string) printForm;
|
|
@end
|
|
|
|
#endif //__Number_h
|