TemplatePage: Change 'content' to shared_ptr

此提交包含在:
2021-10-10 22:32:13 +02:00
父節點 92be470545
當前提交 c9dc3416d7
共有 2 個檔案被更改,包括 4 行新增3 行删除

查看文件

@@ -3,10 +3,11 @@
#include <string>
#include <string_view>
#include <map>
#include <memory>
class TemplatePage
{
private:
std::string content;
std::shared_ptr<const std::string> content;
std::map<std::string, std::string> varsMap;
public: