/** * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: GPL-3.0-or-later */ #import #import "NCRoom.h" #import "NCUser.h" @class AddParticipantsTableViewController; @protocol AddParticipantsTableViewControllerDelegate @optional - (void)addParticipantsTableViewController:(AddParticipantsTableViewController *)viewController wantsToAdd:(NSArray *)participants; - (void)addParticipantsTableViewControllerDidFinish:(AddParticipantsTableViewController *)viewController; @end @interface AddParticipantsTableViewController : UITableViewController @property (nonatomic, weak) id delegate; - (instancetype)initForRoom:(NCRoom *)room; - (instancetype)initWithParticipants:(NSArray *)room; @end