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

23 lines
346 B
C
Raw Normal View History

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