mathgeneric.inl

Go to the documentation of this file.
00001 /*  
00002  *      math_protocol.h - def_generics for the generic function in the Math protocol
00003  *
00004  *      see def_abstract_generics.h for more info.
00005  *
00006  *  
00007  *          Copyright � John Wainwright 1996
00008  *
00009  */
00010 #pragma warning(push)
00011 #pragma warning(disable:4100)
00012 
00013     def_generic(plus,   "+");
00014     def_generic(minus,  "-");
00015     def_generic(times,  "*");
00016     def_generic(div,    "/");
00017     def_generic(uminus, "u-");
00018 
00019     use_generic(eq,     "=");
00020     def_generic(ne,     "!=");
00021     def_generic(gt,     ">");
00022     def_generic(lt,     "<");
00023     def_generic(ge,     ">=");
00024     def_generic(le,     "<=");
00025 
00026 #pragma warning(pop)