diff --git a/cpp04/ex00/WrongCat.cpp b/cpp04/ex00/WrongCat.cpp index 47bc993..be28caf 100644 --- a/cpp04/ex00/WrongCat.cpp +++ b/cpp04/ex00/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 16:53:06 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,12 +14,12 @@ #include WrongCat::WrongCat() { - std::cout << "[WrongCat]\t\tCreating WrongCat class" << std::endl; + std::cout << "[WrongCat]\tCreating WrongCat class" << std::endl; type = "WrongCat"; } WrongCat::WrongCat(WrongCat const & copy) { - std::cout << "[WrongCat]\t\tCreating WrongCat class (copy)" << std::endl; + std::cout << "[WrongCat]\tCreating WrongCat class (copy)" << std::endl; this->type = copy.type; } @@ -30,9 +30,9 @@ WrongCat & WrongCat::operator=(WrongCat const & assign) { } WrongCat::~WrongCat() { - std::cout << "[WrongCat]\t\tDeleting WrongCat class" << std::endl; + std::cout << "[WrongCat]\tDeleting WrongCat class" << std::endl; } void WrongCat::makeSound() const { - std::cout << "[WrongCat]\t\t🐱 | Wouf wouf" << std::endl; + std::cout << "[WrongCat]\t🐱 | Wouf wouf" << std::endl; } diff --git a/cpp04/ex01/WrongCat.cpp b/cpp04/ex01/WrongCat.cpp index b2b130d..be28caf 100644 --- a/cpp04/ex01/WrongCat.cpp +++ b/cpp04/ex01/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 17:17:44 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,7 +24,7 @@ WrongCat::WrongCat(WrongCat const & copy) { } WrongCat & WrongCat::operator=(WrongCat const & assign) { - std::cout << "[WrongCat]\tCreating WrongCat class (assign)" << std::endl; + std::cout << "[WrongCat]\t\tCreating WrongCat class (assign)" << std::endl; this->type = assign.type; return *this; } diff --git a/cpp04/ex02/WrongCat.cpp b/cpp04/ex02/WrongCat.cpp index b2b130d..be28caf 100644 --- a/cpp04/ex02/WrongCat.cpp +++ b/cpp04/ex02/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 17:17:44 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,7 +24,7 @@ WrongCat::WrongCat(WrongCat const & copy) { } WrongCat & WrongCat::operator=(WrongCat const & assign) { - std::cout << "[WrongCat]\tCreating WrongCat class (assign)" << std::endl; + std::cout << "[WrongCat]\t\tCreating WrongCat class (assign)" << std::endl; this->type = assign.type; return *this; }