session-ios/SignalServiceKit/src/Protocols/ProfileManagerProtocol.h
Matthew Chen 6ec756de44 Move profile manager to Signal.
// FREEBIE
2017-08-04 09:45:33 -04:00

18 lines
370 B
Objective-C

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
@class TSThread;
@protocol ProfileManagerProtocol <NSObject>
- (NSData *)localProfileKey;
- (void)setProfileKey:(NSData *)profileKey forRecipientId:(NSString *)recipientId;
- (BOOL)isUserInProfileWhitelist:(NSString *)recipientId;
- (BOOL)isThreadInProfileWhitelist:(TSThread *)thread;
@end