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

24 lines
642 B
Objective-C

// SCManagedCapturer.h
// Snapchat
//
// Created by Liu Liu on 4/20/15.
#import "SCCapturer.h"
#import "SCManagedCapturerListener.h"
#import "SCManagedCapturerUtils.h"
#import <Foundation/Foundation.h>
/*
SCManagedCapturer is a shell class. Its job is to provide an singleton instance which follows protocol of
SCManagedCapturerImpl. The reason we use this pattern is because we are building SCManagedCapturerV2. This setup
offers
possbility for us to code V2 without breaking the existing app, and can test the new implementation via Tweak.
*/
@interface SCManagedCapturer : NSObject
+ (id<SCCapturer>)sharedInstance;
@end