adding the first of cpp06

This commit is contained in:
Raphael 2025-03-22 15:53:20 +01:00
parent 12c51ae90e
commit f4bd73f103
6 changed files with 325 additions and 1 deletions

View file

@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScalarConverter.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* 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 */
/* */
/* ************************************************************************** */
#pragma once
#include <iostream>
class ScalarConverter {
public:
ScalarConverter();
~ScalarConverter();
ScalarConverter(ScalarConverter const &copy);
ScalarConverter& operator = (ScalarConverter const &assign);
static void convert(std::string *input);
private:
};