mirror of
https://github.com/i5xx/Source-SCCamera
synced 2025-04-12 00:55:44 +02:00
20 lines
375 B
Objective-C
20 lines
375 B
Objective-C
//
|
|
// SCManagedCapturerLSAComponentTrackerAPI.h
|
|
// SCCamera
|
|
//
|
|
// Created by Michel Loenngren on 4/11/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCCaptureResource;
|
|
|
|
/**
|
|
SCCamera protocol providing LSA tracking logic.
|
|
*/
|
|
@protocol SCManagedCapturerLSAComponentTrackerAPI <NSObject>
|
|
|
|
- (void)configureWithCaptureResource:(SCCaptureResource *)captureResource;
|
|
|
|
@end
|