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

22 lines
369 B
C++
Raw Normal View History

#include "SiteGeneratorConfig.h"
Path SiteGeneratorConfig::getThemePath() const
{
return mThemesPath;
}
2023-12-21 09:18:44 +00:00
String SiteGeneratorConfig::getActiveTheme() const
{
return mActiveTheme;
}
void SiteGeneratorConfig::setThemePath(const Path& path)
{
mThemesPath = path;
}
2023-12-21 09:18:44 +00:00
void SiteGeneratorConfig::setActiveTheme(const String& theme)
{
mActiveTheme = theme;
}