mirror of https://github.com/oxen-io/session-ios
You cannot 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
413 B
C
20 lines
413 B
C
9 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
9 years ago
|
|
||
|
#import "OWSChunkedOutputStream.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
9 years ago
|
@class SignalAccount;
|
||
8 years ago
|
@class OWSRecipientIdentity;
|
||
9 years ago
|
|
||
|
@interface OWSContactsOutputStream : OWSChunkedOutputStream
|
||
|
|
||
8 years ago
|
- (void)writeSignalAccount:(SignalAccount *)signalAccount
|
||
8 years ago
|
recipientIdentity:(nullable OWSRecipientIdentity *)recipientIdentity;
|
||
9 years ago
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|