You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* Dog.hpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/24 09:02:36 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/06/24 11:46:17 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "Animal.hpp"
|
||
|
#include "Brain.hpp"
|
||
|
|
||
|
class Dog: public Animal {
|
||
|
Brain *_brain;
|
||
|
public:
|
||
|
Dog(void);
|
||
|
~Dog(void);
|
||
|
void makeSound(void) const;
|
||
|
};
|