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