Let's make (git) history!
This commit is contained in:
21
templatepage.h
Normal file
21
templatepage.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef TEMPLATEPAGE_H
|
||||
#define TEMPLATEPAGE_H
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <map>
|
||||
class TemplatePage
|
||||
{
|
||||
private:
|
||||
std::string content;
|
||||
std::map<std::string, std::string> varsMap;
|
||||
|
||||
public:
|
||||
TemplatePage();
|
||||
TemplatePage(std::string content);
|
||||
|
||||
std::string render() const;
|
||||
|
||||
void setVar(const std::string &key, std::string value);
|
||||
};
|
||||
|
||||
#endif // TEMPLATEPAGE_H
|
Reference in New Issue
Block a user