stuff-from-scratch/apps/website-generator/SiteGeneratorConfig.h
2023-12-21 09:18:44 +00:00

22 lines
346 B
C++

#pragma once
#include "String.h"
#include <filesystem>
using Path = std::filesystem::path;
class SiteGeneratorConfig
{
public:
Path getThemePath() const;
String getActiveTheme() const;
void setThemePath(const Path& path);
void setActiveTheme(const String& theme);
private:
Path mThemesPath;
String mActiveTheme;
};