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.
18 lines
467 B
18 lines
467 B
//
|
|
// SCCaptureScanningState.h
|
|
// Snapchat
|
|
//
|
|
// Created by Xiaokang Liu on 09/01/2018.
|
|
//
|
|
|
|
#import "SCCaptureBaseState.h"
|
|
|
|
@class SCQueuePerformer;
|
|
|
|
@interface SCCaptureScanningState : SCCaptureBaseState
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithPerformer:(SCQueuePerformer *)performer
|
|
bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
|
|
delegate:(id<SCCaptureStateDelegate>)delegate;
|
|
@end
|