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.

22 lines
496 B

  1. //
  2. // SCCaptureFaceDetectorTrigger.h
  3. // Snapchat
  4. //
  5. // Created by Jiyang Zhu on 3/22/18.
  6. // Copyright © 2018 Snapchat, Inc. All rights reserved.
  7. //
  8. // This class is used to control when should SCCaptureFaceDetector starts and stops.
  9. #import <SCBase/SCMacros.h>
  10. #import <Foundation/Foundation.h>
  11. @protocol SCCaptureFaceDetector;
  12. @interface SCCaptureFaceDetectorTrigger : NSObject
  13. SC_INIT_AND_NEW_UNAVAILABLE;
  14. - (instancetype)initWithDetector:(id<SCCaptureFaceDetector>)detector;
  15. @end