#pragma once #include using Path = std::filesystem::path; class SiteTemplateFile { public: SiteTemplateFile(const Path& path) : mPath(path) { } private: Path mPath; };