2014 snapchat source code
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

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