classes/frac3.hpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


#ifndef FRACTION_HPP
#define FRACTION_HPP

// include standard header files
#include <iostream>

// **** BEGIN namespace CPPBook ********************************
namespace CPPBook {

/* Fraction class
 */
class Fraction {

  private:
    int numer;
    int denom;

  public:
    /* new: default constructor and one- and two-parameter
     * constructors combined into the one function
     */
    Fraction(int = 0, int = 1);

    /* output
     * - new: defined inline
     */
    void print() {
        std::cout << numer << '/' << denom << std::endl;
    }

    // multiplication
    Fraction operator * (Fraction);

    // multiplicative assignment
    Fraction operator *= (Fraction);

    // comparison
    bool operator < (Fraction);
};

/* operator *
 * - new: defined inline
 */
inline Fraction Fraction::operator * (Fraction f)
{
    /* simply multiply numerator and denominator
     * - no reducing yet
     */
    return Fraction(numer * f.numer, denom * f.denom);
}

// **** END namespace CPPBook ********************************

#endif    // FRACTION_HPP