/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Animal.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:54 by rparodi #+# #+# */ /* Updated: 2025/01/31 19:23:05 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ANIMAL_HPP #define ANIMAL_HPP #include #include class Animal { public: Animal(); virtual ~Animal(); virtual void makeSound() const; std::string getType() const; protected: std::string type; private: }; #endif