00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #if !defined(ARITHMETIC_OL_GUARD)
00044 #define ARITHMETIC_OL_GUARD
00045
00046 #include <ObjectiveLib/Config.h>
00047 #if defined(OL_NO_OPENSTEP)
00048 #include <objc/objc.h>
00049 #else
00050 #if defined(OL_GENERATING_DOCUMENTATION)
00051 #include <Foundation/NSValue.h>
00052 #else
00053 #import <Foundation/NSValue.h>
00054 #endif
00055 #endif
00056
00076 @protocol OLArithmetic
00077
00086 - (id) arithmeticAdd: (id)value;
00087
00096 - (id) arithmeticDivideBy: (id)value;
00097
00106 - (id) arithmeticModulus: (id)value;
00107
00116 - (id) arithmeticMultiply: (id)value;
00117
00125 - (id) arithmeticNegate;
00126
00135 - (id) arithmeticSubtract: (id)value;
00136
00137 @end
00138
00139 #if !defined(OL_NO_OPENSTEP)
00140
00147 @interface NSNumber (OLArithmetic) <OLArithmetic>
00148
00157 - (id) arithmeticAdd: (id)value;
00158
00167 - (id) arithmeticDivideBy: (id)value;
00168
00177 - (id) arithmeticModulus: (id)value;
00178
00187 - (id) arithmeticMultiply: (id)value;
00188
00196 - (id) arithmeticNegate;
00197
00206 - (id) arithmeticSubtract: (id)value;
00207
00208 @end
00209 #endif
00210
00211 #endif