Samond Classes Library 1.2.0-RELEASE build 166
SCDictionaring.h
Go to the documentation of this file.
1 //
2 // SCDictionaring.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 28.02.12.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <Foundation/Foundation.h>
24 
42 @protocol SCDictionaring
43 
44 #pragma mark -
45 #pragma mark Data Dictionaries Support
46 
61 - (id)initWithDataDictionary:(NSDictionary *)dictionary;
62 
73 - (id)initWithDataDictionaryFromFile:(NSString *)path;
74 
83 - (void)writeToDataDictionary:(NSMutableDictionary *)dictionary;
84 
95 - (void)writeToDataDictionaryFile:(NSString *)path atomically:(BOOL)atomically;
96 
107 - (void)writeToDataDictionaryFile:(NSString *)path;
108 
117 - (NSDictionary *)dataDictionary;
118 
127 - (NSString *)className;
128 
129 @end
NSDictionary * dataDictionary()
NSString * className()
Protocol of methods for data exchanging between class instances and classes NSDictionary and NSMutabl...
Definition: SCDictionaring.h:42