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