adding the start of ex01 with the patched for cpp98

This commit is contained in:
Raphael 2025-02-06 23:29:03 +01:00
parent 1cff8e9d9e
commit f7bd1abc3c
15 changed files with 185 additions and 35 deletions

View file

@ -6,21 +6,21 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/30 13:32:43 by rparodi #+# #+# */
/* Updated: 2025/01/30 13:38:46 by rparodi ### ########.fr */
/* Updated: 2025/01/31 19:54:03 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "Cat.hpp"
Cat::Cat() {
std::cout << "[Cat] Creating the class" << std::endl;
std::cout << "[Cat]\t\tCreating the class" << std::endl;
type = "Cat";
}
Cat::~Cat() {
std::cout << "[Cat] Deleting the class" << std::endl;
std::cout << "[Cat]\t\tDeleting the class" << std::endl;
}
std::string Cat::getType() {
return (type);
void Cat::makeSound() const {
std::cout << "🐱 | Meow Meow" << std::endl;
}