sensitivity.io for iOS & macOS  1.1.4
SettingsLoader.h
1 //
2 // SettingsLoader.h
3 //
4 // Created by Andreea ERDELYI <andreea.erdelyi@cososys.com>
5 //
6 // Copyright (C) 2017 CoSoSys Ltd team@sensitivity.io
7 // CoSoSys Ltd. All rights reserved.
8 // Please see the COPYING for more details.
9 //
10 
11 #import <Foundation/Foundation.h>
12 
18 @interface SettingsLoader : NSObject
19 
20 // MARK: - load settings
30 - (BOOL) loadSettingsFromFileAtPath:(NSString * _Nonnull)settingsFilePath withError:(NSError * _Nullable * _Nullable)error NS_SWIFT_NAME(loadSettingsFromFile(atPath:));
40 - (BOOL) loadSettingsFromString:(NSString * _Nonnull)settingsString withError:(NSError * _Nullable * _Nullable)error NS_SWIFT_NAME(loadSettings(_:));
41 
42 @end
Definition: SettingsLoader.h:18