Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MUMessageRecipientViewController.h « Classes « Source - github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f709fcdab4bddf1c996e8d51695224e2a368e62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009-2012 The 'Mumble for iOS' Developers. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#import <MumbleKit/MKServerModel.h>

@class MUMessageRecipientViewController;

@protocol MUMessageRecipientViewControllerDelegate
- (void) messageRecipientViewControllerDidSelectCurrentChannel:(MUMessageRecipientViewController *)viewCtrlr;
- (void) messageRecipientViewController:(MUMessageRecipientViewController *)viewCtrlr didSelectUser:(MKUser *)user;
- (void) messageRecipientViewController:(MUMessageRecipientViewController *)viewCtrlr didSelectChannel:(MKChannel *)channel;
@end

@interface MUMessageRecipientViewController : UITableViewController
- (id) initWithServerModel:(MKServerModel *)serverModel;
- (id<MUMessageRecipientViewControllerDelegate>) delegate;
- (void) setDelegate:(id<MUMessageRecipientViewControllerDelegate>)delegate;
@end