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

//
// SCCaptureFaceDetectorTrigger.h
// Snapchat
//
// Created by Jiyang Zhu on 3/22/18.
// Copyright © 2018 Snapchat, Inc. All rights reserved.
//
// This class is used to control when should SCCaptureFaceDetector starts and stops.
#import <SCBase/SCMacros.h>
#import <Foundation/Foundation.h>
@protocol SCCaptureFaceDetector;
@interface SCCaptureFaceDetectorTrigger : NSObject
SC_INIT_AND_NEW_UNAVAILABLE;
- (instancetype)initWithDetector:(id<SCCaptureFaceDetector>)detector;
@end