aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Theme.cpp')
-rw-r--r--src/Theme.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Theme.cpp b/src/Theme.cpp
new file mode 100644
index 0000000..c882cc4
--- /dev/null
+++ b/src/Theme.cpp
@@ -0,0 +1,16 @@
+#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;
+ }
+}