#pragma once namespace dchat { class Theme { public: enum class Type { DEFAULT, SIMPLE }; static Type getType(); static void setType(Type type); }; }