-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDog.hpp
41 lines (33 loc) · 1.27 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
35
36
37
38
39
40
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Dog.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wcorrea- <wcorrea-@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/19 15:43:01 by wcorrea- #+# #+# */
/* Updated: 2023/07/26 09:14:23 by wcorrea- ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DOG_HPP
# define DOG_HPP
# include <iostream>
# include "Animal.hpp"
# include "Brain.hpp"
class Dog : public Animal
{
private:
Brain *_brain;
public:
// Constructors
Dog(void);
Dog(Dog const &src);
virtual ~Dog(void);
// Operators
Dog &operator=(Dog const &src);
// Member functions
void makeSound(void) const;
// Getters
Brain *getBrain(void) const;
};
#endif