RoomsTableViewController.h 430 B

1234567891011121314151617
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. #import <AudioToolbox/AudioToolbox.h>
  7. @interface RoomsTableViewController : UITableViewController
  8. @property (nonatomic) NSString *selectedRoomToken;
  9. - (void)setSelectedRoomToken:(NSString *)selectedRoomToken;
  10. - (void)highlightSelectedRoom;
  11. - (void)removeRoomSelection;
  12. @end