Files
BlockBlock/Daemon/Daemon/Preferences.h
T
Patrick Wardle 57ca40fc7f initial checkin
BlockBlock v1.0 (beta)
2020-04-10 21:09:09 -10:00

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