#ifndef DYNAMICCONTENTGETVAR_H #define DYNAMICCONTENTGETVAR_H #include "dynamiccontent.h" class DynamicContentGetVar : public DynamicContent { private: std::map *map; public: using DynamicContent::DynamicContent; // DynamicContent interface public: std::string render(); void setMap(std::map &map); }; #endif // DYNAMICCONTENTGETVAR_H