#ifndef DECORATION_H #define DECORATION_H #include #include class Decoration { private: std::string name_m; public: // Constructors Decoration(); Decoration(const std::string& name); // Getters std::string getName() const; // Others void printDecoration() const; }; #endif // CITY_H