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.
23 lines
642 B
23 lines
642 B
// 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
|