squall/storm/registry/mac/Static.mm

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;
}