18 lines
210 B
C++
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;
|
|
};
|