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
377 B

  1. //
  2. // Created by Aaron Levine on 10/16/17.
  3. //
  4. #import <SCBase/SCMacros.h>
  5. #import <Foundation/Foundation.h>
  6. @class SCCapturerToken;
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface SCCapturerTokenProvider : NSObject
  9. SC_INIT_AND_NEW_UNAVAILABLE
  10. + (instancetype)providerWithToken:(SCCapturerToken *)token;
  11. - (nullable SCCapturerToken *)getTokenAndInvalidate;
  12. @end
  13. NS_ASSUME_NONNULL_END