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.

20 lines
450 B

  1. //
  2. // SCManagedCapturerLensAPIProvider.h
  3. // SCCamera
  4. //
  5. // Created by Michel Loenngren on 4/12/18.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @protocol SCManagedCapturerLensAPI;
  9. @class SCCaptureResource;
  10. /**
  11. Provider for creating new instances of SCManagedCapturerLensAPI within SCCamera.
  12. */
  13. @protocol SCManagedCapturerLensAPIProvider <NSObject>
  14. - (id<SCManagedCapturerLensAPI>)lensAPIForCaptureResource:(SCCaptureResource *)captureResouce;
  15. @end