mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
14 lines
272 B
Text
14 lines
272 B
Text
#include "storm/registry/mac/Static.hpp"
|
|
|
|
SRegStatic* SRegStatic::Get() {
|
|
static SRegStatic sregstatic;
|
|
return &sregstatic;
|
|
}
|
|
|
|
SRegStatic::SRegStatic() {
|
|
this->hives = [[NSMutableDictionary alloc] init];
|
|
}
|
|
|
|
SRegStatic::~SRegStatic() {
|
|
this->hives = nil;
|
|
}
|