-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathPOD.h
29 lines (20 loc) · 824 Bytes
/
POD.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// POD.h
// Veertu VMX
//
// Created by VeertuLabs on 2/23/16.
// Copyright © 2016 Veertu Labs Ltd. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface POD : NSObject<NSCopying>
@property (readwrite, nonatomic) NSScriptObjectSpecifier * _Nonnull objectSpecifier;
+(nonnull instancetype)fromDictionary:(nonnull NSDictionary *)dict;
+(nonnull instancetype)make UNAVAILABLE_ATTRIBUTE;
-(nonnull instancetype)initFromDictionary:(nonnull NSDictionary *)dict;
-(NSScriptObjectSpecifier * _Nonnull)objectSpecifier;
-(nonnull NSString *)description;
-(nonnull NSDictionary *)toDictionary;
-(nonnull instancetype)copyWithZone:(nullable NSZone *)zone;
- (nullable id)objectForKeyedSubscript:(nonnull NSString*)key;
- (void)setObject:(nullable id)object forKeyedSubscript:(nonnull NSString*)key;
@end