stuff-from-scratch/apps/website-generator/SiteTemplateFile.h

18 lines
210 B
C++

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