aboutsummaryrefslogtreecommitdiff
path: root/include/Theme.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Theme.hpp')
-rw-r--r--include/Theme.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/Theme.hpp b/include/Theme.hpp
new file mode 100644
index 0000000..19f3200
--- /dev/null
+++ b/include/Theme.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+namespace dchat
+{
+ class Theme
+ {
+ public:
+ enum class Type
+ {
+ DEFAULT,
+ SIMPLE
+ };
+
+ static Type getType();
+ static void setType(Type type);
+ };
+}