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
511 B
22 lines
511 B
//
|
|
// SCCaptureInitializedState.h
|
|
// Snapchat
|
|
//
|
|
// Created by Jingtian Yang on 20/12/2017.
|
|
//
|
|
|
|
#import "SCCaptureBaseState.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCQueuePerformer;
|
|
|
|
@interface SCCaptureInitializedState : SCCaptureBaseState
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithPerformer:(SCQueuePerformer *)performer
|
|
bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
|
|
delegate:(id<SCCaptureStateDelegate>)delegate;
|
|
|
|
@end
|