/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include "../Animal/Animal.hpp" # include "../Brain/Brain.hpp" class Dog : public Animal { private: Brain *brain; public: Dog(); ~Dog(); Dog(const Dog &other); Dog& operator=(const Dog &other); void makeSound() const; Brain* getBrain() const { return brain; } }; #endif