I suppose to write a Fraction Class program. The instructions give a list of constructors and function names we have to have. On of the function names we have to have is operator double - Return the value of the Fraction object as a double. Divide the numerator by the denominator to get this result.
the other ones are operator *
operator +
operator =
operator ==
these ones i pretty much understand. It's that operator double i don't get. I wrote doubleoperator / (Fraction&), but that doesn't seem right i think that would divide one Fraction object by another Fraction object. Any help here?