mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
15 lines
227 B
C++
15 lines
227 B
C++
#include "theme_map.h"
|
|
|
|
ThemeMap::ThemeMap() {
|
|
_instance = this;
|
|
}
|
|
|
|
ThemeMap::~ThemeMap() {
|
|
_instance = nullptr;
|
|
}
|
|
|
|
ThemeMap *ThemeMap::get_singleton() {
|
|
return _instance;
|
|
}
|
|
|
|
ThemeMap *ThemeMap::_instance = nullptr; |