session-ios/Signal/src/ViewControllers/AddToGroupViewController.h

28 lines
554 B
C
Raw Normal View History

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
#import "SelectRecipientViewController.h"
2017-05-02 16:54:07 +02:00
NS_ASSUME_NONNULL_BEGIN
@protocol AddToGroupViewControllerDelegate <NSObject>
- (void)recipientIdWasAdded:(NSString *)recipientId;
2017-05-02 16:54:07 +02:00
- (BOOL)isRecipientGroupMember:(NSString *)recipientId;
@end
#pragma mark -
@interface AddToGroupViewController : SelectRecipientViewController
@property (nonatomic, weak) id<AddToGroupViewControllerDelegate> addToGroupDelegate;
@property (nonatomic) BOOL hideContacts;
@end
2017-05-02 16:54:07 +02:00
NS_ASSUME_NONNULL_END