You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
519 B
22 lines
519 B
//
|
|
// SCStateTransitionPayload.h
|
|
// Snapchat
|
|
//
|
|
// Created by Lin Jia on 1/8/18.
|
|
//
|
|
|
|
#import "SCCaptureStateUtil.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface SCStateTransitionPayload : NSObject
|
|
|
|
@property (nonatomic, readonly, assign) SCCaptureStateMachineStateId fromState;
|
|
|
|
@property (nonatomic, readonly, assign) SCCaptureStateMachineStateId toState;
|
|
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
|
|
- (instancetype)initWithFromState:(SCCaptureStateMachineStateId)fromState toState:(SCCaptureStateMachineStateId)toState;
|
|
|
|
@end
|