1
0

」 feat(Ex01): Finished

This commit is contained in:
2024-12-06 16:06:57 +01:00
parent c80c06d354
commit 0682096484
28 changed files with 603 additions and 29 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/06 15:52:20 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;
};