20 sor
402 B
C++
20 sor
402 B
C++
#ifndef DYNAMICCONTENTGETVAR_H
|
|
#define DYNAMICCONTENTGETVAR_H
|
|
|
|
#include "dynamiccontent.h"
|
|
class DynamicContentGetVar : public DynamicContent
|
|
{
|
|
private:
|
|
std::map<std::string, std::string> *map;
|
|
|
|
public:
|
|
using DynamicContent::DynamicContent;
|
|
|
|
// DynamicContent interface
|
|
public:
|
|
std::string render();
|
|
void setMap(std::map<std::string, std::string> &map);
|
|
};
|
|
|
|
#endif // DYNAMICCONTENTGETVAR_H
|