mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-21 22:43:15 +08:00
28 lines
361 B
Objective-C
28 lines
361 B
Objective-C
// 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
|