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/dog.hpp Normal file
View File

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