#ifndef RPN_HPP # define RPN_HPP #include #include #include #include class RPN { public: RPN(); RPN(const RPN &other); RPN &operator=(const RPN &other); ~RPN(); int compute(const std::string &string); private: std::stack _stack; }; #endif