00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSDecimalNumber.h>
00008
00009 @interface NSDecimalNumber (NSNumberCompatibility)
00010 + (id)numberWithChar:(BOOL)fp8;
00011 + (id)numberWithUnsignedChar:(unsigned char)fp8;
00012 + (id)numberWithShort:(short)fp8;
00013 + (id)numberWithUnsignedShort:(unsigned short)fp8;
00014 + (id)numberWithInt:(int)fp8;
00015 + (id)numberWithUnsignedInt:(unsigned int)fp8;
00016 + (id)numberWithLong:(long)fp8;
00017 + (id)numberWithUnsignedLong:(unsigned long)fp8;
00018 + (id)numberWithLongLong:(long long)fp8;
00019 + (id)numberWithUnsignedLongLong:(unsigned long long)fp8;
00020 + (id)numberWithFloat:(float)fp8;
00021 + (id)numberWithDouble:(double)fp8;
00022 + (id)numberWithBool:(BOOL)fp8;
00023 @end
00024