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.
30 lines
546 B
30 lines
546 B
//
|
|
// SCCapturerToken.m
|
|
// Snapchat
|
|
//
|
|
// Created by Xishuo Liu on 3/24/17.
|
|
// Copyright © 2017 Snapchat, Inc. All rights reserved.
|
|
//
|
|
|
|
#import "SCCapturerToken.h"
|
|
|
|
#import <SCFoundation/NSString+SCFormat.h>
|
|
|
|
@implementation SCCapturerToken {
|
|
NSString *_identifier;
|
|
}
|
|
|
|
- (instancetype)initWithIdentifier:(NSString *)identifier
|
|
{
|
|
if (self = [super init]) {
|
|
_identifier = identifier.copy;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSString *)debugDescription
|
|
{
|
|
return [NSString sc_stringWithFormat:@"%@_%@", _identifier, self];
|
|
}
|
|
|
|
@end
|