// // KQ3MonarchCell.h // KingsQueens3 // // Created by Terry Payne on 21/11/2011. // Copyright (c) 2011 University of Liverpool. All rights reserved. // #import @interface KQ3MonarchCell : UITableViewCell { UILabel *houseLabel; UILabel *epochLabel; UILabel *monarchLabel; UILabel *reignedLabel; UIImageView *thumbImageView; } @property (nonatomic, retain) IBOutlet UILabel *houseLabel; @property (nonatomic, retain) IBOutlet UILabel *epochLabel; @property (nonatomic, retain) IBOutlet UILabel *monarchLabel; @property (nonatomic, retain) IBOutlet UILabel *reignedLabel; @property (nonatomic, retain) IBOutlet UIImageView *thumbImageView; @end