Samond Classes Library 1.2.6-STABLE build 219
SCCoding.h
Go to the documentation of this file.
1 //
2 // SCCoding.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 29.02.12.
6 // Copyright (c) 2007 - 2018 by Samond Development Corporation. All rights reserved.
7 //
8 
25 #import <Foundation/Foundation.h>
26 
42 @protocol SCCoding <NSCoding>
43 
44 #pragma mark -
45 #pragma mark Instance Properties
46 
55 @property (nonatomic, readonly, copy) NSString *className;
56 
59 #pragma mark -
60 #pragma mark Serialized Files Support
61 
77 - (instancetype)initWithContentsOfSerializedFile:(NSString *)path;
78 
89 - (BOOL)writeContentsToSerializedFile:(NSString *)path;
90 
91 @end
Standard protocol NSCoding extention protocol.
Definition: SCCoding.h:42
NSString * className
Definition: SCCoding.h:55