#ifndef CALCULATOR_H #define CALCULATOR_H #include "Fraction.h" /** Implements a fractional calculator in standard mode */ class Calculator { private: ecci::Fraction result; ecci::Fraction other; char operador = ' '; public: int run(); bool readFraction(); bool readOperation(); }; #endif // CALCULATOR_H