2014 snapchat source code
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

  1. //
  2. // SCCaptureScanningState.h
  3. // Snapchat
  4. //
  5. // Created by Xiaokang Liu on 09/01/2018.
  6. //
  7. #import "SCCaptureBaseState.h"
  8. @class SCQueuePerformer;
  9. @interface SCCaptureScanningState : SCCaptureBaseState
  10. - (instancetype)init NS_UNAVAILABLE;
  11. - (instancetype)initWithPerformer:(SCQueuePerformer *)performer
  12. bookKeeper:(SCCaptureStateMachineBookKeeper *)bookKeeper
  13. delegate:(id<SCCaptureStateDelegate>)delegate;
  14. @end