」 feat: should have finished ex00

This commit is contained in:
2025-04-09 10:33:31 +02:00
parent 2b51c0baca
commit df7ffd0aeb
10 changed files with 198 additions and 29 deletions

View File

@ -6,18 +6,17 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/03 19:38:39 by adjoly #+# #+# */
/* Updated: 2025/04/08 14:29:28 by adjoly ### ########.fr */
/* Updated: 2025/04/09 10:31:49 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <iostream>
#include <string>
class ScalarConverter {
public:
static void convert(std::string &);
static void convert(const std::string &);
private:
ScalarConverter(void);
@ -25,17 +24,4 @@ class ScalarConverter {
~ScalarConverter(void);
ScalarConverter &operator=(const ScalarConverter &);
template <typename T> void _printFloat(T nb) {
std::cout << "float: " << static_cast<float>(nb) << "f" << std::endl;
}
template <typename T> void _printInt(T nb) {
std::cout << "int: " << static_cast<int>(nb) << std::endl;
}
template <typename T> void _printChar(T nb) {
std::cout << "char: '" << static_cast<char>(nb) << "'" << std::endl;
}
template <typename T> void _printDouble(T nb) {
std::cout << "double: " << static_cast<double>(nb) << std::endl;
}
};