mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
21 lines
370 B
C++
21 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
|