/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Converter.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/30 08:45:12 by narnaud #+# #+# */ /* Updated: 2022/07/12 08:46:08 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include #include #include using std::cout; using std::endl; using std::string; class Converter{ string _input; char _c; int _i; float _f; double _d; int _types[4]; public: Converter(void); Converter(string str); Converter(Converter const & src); virtual ~Converter(void); Converter & operator= (Converter const & src); void startConv(void); void display(void); };