cpp/CPP04/ex02/Dog.hpp
2024-12-04 17:29:31 +01:00

21 lines
268 B
C++

#ifndef DOG_HPP
# define DOG_HPP
#include "Animal.hpp"
#include "Brain.hpp"
class Dog : public Animal {
public:
Dog();
~Dog();
Dog(const Dog &other);
Dog& operator=(const Dog &other);
virtual void makeSound() const;
private:
Brain *brain;
};
#endif