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

21 lines
379 B
C++

#include "SiteGeneratorConfig.h"
Path SiteGeneratorConfig::getThemePath() const
{
return mThemesPath;
}
std::string SiteGeneratorConfig::getActiveTheme() const
{
return mActiveTheme;
}
void SiteGeneratorConfig::setThemePath(const Path& path)
{
mThemesPath = path;
}
void SiteGeneratorConfig::setActiveTheme(const std::string& theme)
{
mActiveTheme = theme;
}