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