2010-09-30 12:27:22 -05:00
|
|
|
//
|
|
|
|
// MGMVoiceContacts.h
|
|
|
|
// VoiceMob
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 9/29/10.
|
2013-07-20 06:56:17 -05:00
|
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
2010-09-30 12:27:22 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "MGMContactsController.h"
|
|
|
|
|
|
|
|
@class MGMVoiceUser;
|
|
|
|
|
2013-07-20 06:56:17 -05:00
|
|
|
@interface MGMVoiceContacts : MGMContactsController {
|
2010-09-30 12:27:22 -05:00
|
|
|
MGMVoiceUser *voiceUser;
|
|
|
|
|
|
|
|
IBOutlet UIView *view;
|
|
|
|
}
|
|
|
|
+ (id)tabWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
|
|
|
|
- (id)initWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
|
|
|
|
|
|
|
|
- (MGMVoiceUser *)voiceUser;
|
|
|
|
|
|
|
|
- (UIView *)view;
|
|
|
|
- (void)releaseView;
|
|
|
|
@end
|