「✨」 feat(Ex00): added a very cool feature !
This commit is contained in:
25
ex00/dog.hpp
Normal file
25
ex00/dog.hpp
Normal 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;
|
||||
};
|
Reference in New Issue
Block a user