#include "../include/Theme.hpp" namespace dchat { static Theme::Type type = Theme::Type::DEFAULT; Theme::Type Theme::getType() { return type; } void Theme::setType(Type _type) { type = _type; } }