mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
28 lines
461 B
Objective-C
28 lines
461 B
Objective-C
//
|
|
// Preferences.h
|
|
// Daemon
|
|
//
|
|
// Created by Patrick Wardle on 2/22/18.
|
|
// Copyright © 2018 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Preferences : NSObject
|
|
|
|
/* PROPERTIES */
|
|
|
|
//preferences
|
|
@property(nonatomic, retain)NSMutableDictionary* preferences;
|
|
|
|
/* METHODS */
|
|
|
|
//load prefs from disk
|
|
-(BOOL)load;
|
|
|
|
//update prefs
|
|
// saves and handles logic for specific prefs
|
|
-(BOOL)update:(NSDictionary*)updates;
|
|
|
|
@end
|