mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
15 lines
233 B
C
15 lines
233 B
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;
|
||
|
@end
|
||
|
|
||
|
#endif //__Number_h
|