mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
d12a582ee3
// FREEBIE
21 lines
762 B
Objective-C
21 lines
762 B
Objective-C
//
|
|
// ShowGroupMembersViewController.h
|
|
// Signal
|
|
//
|
|
// Created by Christine Corbett on 12/19/14
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TSGroupModel.h"
|
|
#import "TSGroupThread.h"
|
|
|
|
@interface ShowGroupMembersViewController : UITableViewController <UITableViewDelegate,
|
|
UITabBarDelegate,
|
|
UIImagePickerControllerDelegate,
|
|
UINavigationControllerDelegate,
|
|
UITextFieldDelegate>
|
|
|
|
- (void)configWithThread:(TSGroupThread *)thread;
|
|
|
|
@end
|