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.
18 lines
481 B
18 lines
481 B
//
|
|
// SCCapturerToken.h
|
|
// Snapchat
|
|
//
|
|
// Created by Xishuo Liu on 3/24/17.
|
|
// Copyright © 2017 Snapchat, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface SCCapturerToken : NSObject
|
|
|
|
- (instancetype)initWithIdentifier:(NSString *)identifier NS_DESIGNATED_INITIALIZER;
|
|
|
|
- (instancetype)init __attribute__((unavailable("Use initWithIdentifier: instead.")));
|
|
- (instancetype) new __attribute__((unavailable("Use initWithIdentifier: instead.")));
|
|
|
|
@end
|