VoiceMac/Classes/VoiceMob/Voice/MGMVoiceSMS.h

25 lines
508 B
Objective-C

//
// MGMVoiceSMS.h
// VoiceMob
//
// Created by Mr. Gecko on 9/30/10.
// Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
//
#import <UIKit/UIKit.h>
@class MGMVoiceUser;
@interface MGMVoiceSMS : NSObject {
MGMVoiceUser *voiceUser;
IBOutlet UIView *messageView;
}
+ (id)tabWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
- (id)initWithVoiceUser:(MGMVoiceUser *)theVoiceUser;
- (MGMVoiceUser *)voiceUser;
- (UIView *)view;
- (void)releaseView;
@end