mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
98d1c59bfc
* TODO refactor attachment sending to work without thread/message * TODO de-dupe attachment pointer building code // FREEBIE
12 lines
408 B
Objective-C
12 lines
408 B
Objective-C
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
|
|
|
#import "ContactsManagerProtocol.h"
|
|
#import "OWSOutgoingSyncMessage.h"
|
|
|
|
@interface OWSSyncContactsMessage : OWSOutgoingSyncMessage
|
|
|
|
- (instancetype)initWithContactsManager:(id<ContactsManagerProtocol>)contactsManager;
|
|
- (void)saveWithTransaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
- (NSData *)buildPlainTextAttachmentData;
|
|
|
|
@end
|