feat: adding the convert char / int

This commit is contained in:
Raphael 2025-03-23 18:42:14 +01:00
parent f4bd73f103
commit 5d93eb2fd3
3 changed files with 28 additions and 54 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/20 15:50:13 by rparodi #+# #+# */
/* Updated: 2025/03/21 15:05:26 by rparodi ### ########.fr */
/* Updated: 2025/03/22 22:20:50 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,6 +14,11 @@
#include <iostream>
bool isInt(std::string const &str);
void convertInt(std::string const &str);
bool isChar(std::string const &str);
void convertChar(std::string const &str);
class ScalarConverter {
public:
ScalarConverter();