/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* RPN.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/04/24 12:37:09 by aortigos #+# #+# */ /* Updated: 2026/04/24 12:37:09 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef RPN_HPP # define RPN_HPP # include # include # include # include class RPN { private: std::stack numbers; public: RPN(); RPN(const RPN &other); RPN& operator=(const RPN &other); ~RPN(); bool isToken(std::string token); void math(std::string data); }; #endif