1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChatCamera/ManagedCapturer/SCCaptureFaceDetectorTrigger.h
2018-08-08 02:27:52 +03:00

23 lines
496 B
Objective-C

//
// 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