-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDog.hpp
34 lines (27 loc) · 1.16 KB
/
Dog.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Dog.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dpoveda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/16 13:09:12 by dpoveda- #+# #+# */
/* Updated: 2022/02/16 18:26:41 by dpoveda- ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DOG_HPP_
# define DOG_HPP_
# include "Animal.hpp"
# include "Brain.hpp"
class Dog : public Animal {
public:
Dog();
Dog(const Dog& other);
~Dog();
Dog& operator=(const Dog& other);
void makeSound() const;
Brain* getBrain() const;
private:
Brain* brain;
};
#endif