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