// file: $PDSP/class/float_8/v1.0/flt8_oper_1.cc // // isip include files // #include "float_8.h" // method: + operator overload // // arguments: // float_8 arg_a: (input) operand 2 // // return: a Float_8 object containing the sum of this + arg // Float_8 Float_8::operator+ (float_8 arg_a) { // increment the operations counter // num_adds_d++; // exit gracefully // return Float_8(value_d + arg_a); }