mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-22 23:13:34 +08:00
29 lines
361 B
Mathematica
29 lines
361 B
Mathematica
|
// Created by Gennadiy Potapov
|
||
|
|
||
|
#import "DBUserDefaultsController.h"
|
||
|
#import "DBUserDefaults.h"
|
||
|
|
||
|
@implementation DBUserDefaultsController
|
||
|
|
||
|
|
||
|
- (id)init
|
||
|
{
|
||
|
self = [super init];
|
||
|
if (self) {
|
||
|
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
|
||
|
- (NSUserDefaults *)defaults {
|
||
|
return [DBUserDefaults standardUserDefaults];
|
||
|
}
|
||
|
|
||
|
- (void)dealloc
|
||
|
{
|
||
|
[super dealloc];
|
||
|
}
|
||
|
|
||
|
@end
|