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.
2018-08-08 02:27:52 +03:00

27 lines
483 B
Objective-C

//
// SCManagedCapturer.m
// Snapchat
//
// Created by Lin Jia on 9/28/17.
//
#import "SCManagedCapturer.h"
#import "SCCameraTweaks.h"
#import "SCCaptureCore.h"
#import "SCManagedCapturerV1.h"
@implementation SCManagedCapturer
+ (id<SCCapturer>)sharedInstance
{
static dispatch_once_t onceToken;
static id<SCCapturer> managedCapturer;
dispatch_once(&onceToken, ^{
managedCapturer = [[SCCaptureCore alloc] init];
});
return managedCapturer;
}
@end