// // 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 @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