-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADLFrameData.h
36 lines (29 loc) · 1.45 KB
/
ADLFrameData.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
30
31
32
33
34
35
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, May 19, 2018 at 4:51:44 PM Eastern Daylight Time
* Operating System: Version 10.2 (Build 14C92)
* Image Source: /var/containers/Bundle/Application/7AB1B6B1-534C-4BF9-A7EB-BE2BD4C13043/Snapchat.app/Snapchat
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
@class NSArray;
@interface ADLFrameData : NSObject {
BOOL _keyFrame;
int _width;
int _height;
NSArray* _frameData;
long long _timestamp;
}
@property (nonatomic,readonly) NSArray * frameData; //@synthesize frameData=_frameData - In the implementation block
@property (nonatomic,readonly) int width; //@synthesize width=_width - In the implementation block
@property (nonatomic,readonly) int height; //@synthesize height=_height - In the implementation block
@property (nonatomic,readonly) long long timestamp; //@synthesize timestamp=_timestamp - In the implementation block
@property (nonatomic,readonly) BOOL keyFrame; //@synthesize keyFrame=_keyFrame - In the implementation block
+(id)FrameDataWithFrameData:(id)arg1 width:(int)arg2 height:(int)arg3 timestamp:(long long)arg4 keyFrame:(BOOL)arg5 ;
-(id)initWithFrameData:(id)arg1 width:(int)arg2 height:(int)arg3 timestamp:(long long)arg4 keyFrame:(BOOL)arg5 ;
-(NSArray *)frameData;
-(BOOL)keyFrame;
-(id)description;
-(long long)timestamp;
-(int)width;
-(int)height;
@end