aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
blob: c882cc413e7b409c7639a4c8fb7fc8d20a6ac07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
    }
}