TemplatePage: Change 'content' to shared_ptr

This commit is contained in:
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: