#ifndef WEAPON_HPP #define WEAPON_HPP #include class Weapon { public: Weapon(std::string type); const std::string &getType(void); void setType(std::string type); private: std::string type; }; #endif