mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
22 lines
370 B
C++
22 lines
370 B
C++
|
|
#ifndef STORM_REGISTRY_MAC_STATIC_HPP
|
||
|
|
#define STORM_REGISTRY_MAC_STATIC_HPP
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
class SRegStatic {
|
||
|
|
public:
|
||
|
|
NSMutableDictionary<NSString*, NSUserDefaults*>* hives;
|
||
|
|
|
||
|
|
static SRegStatic Get();
|
||
|
|
|
||
|
|
SRegStatic() {
|
||
|
|
this->hives = [NSMutableDictionary init];
|
||
|
|
}
|
||
|
|
|
||
|
|
~SRegStatic() {
|
||
|
|
this->hives = nil;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|