VoiceMac/Classes/VoiceMob/Views/MGMInboxMessageView.h

23 lines
517 B
C
Raw Normal View History

2010-09-30 22:52:12 -05:00
//
// MGMInboxMessageView.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 MGMInstance;
@interface MGMInboxMessageView : UITableViewCell {
MGMInstance *instance;
UILabel *nameField;
UILabel *dateField;
UILabel *messageField;
NSDictionary *messageData;
}
- (void)setInstance:(MGMInstance *)theInstance;
- (void)setMessageData:(NSDictionary *)theMessageData;
@end