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