1
0

」 feat(Ex00): added a very cool feature !

This commit is contained in:
2024-12-01 20:24:38 +01:00
parent 467c3be3c3
commit c22dad6f83
15 changed files with 333 additions and 0 deletions

25
ex00/cat.hpp Normal file
View File

@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/01 19:06:08 by adjoly #+# #+# */
/* Updated: 2024/12/01 20:18:42 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "animal.hpp"
class Cat : public Animal {
public:
Cat(void);
~Cat(void);
Cat(const Cat &);
Cat &operator=(const Cat &);
void makeSound(void) const;
};