// // VLCPlaylistTableViewCell.h // AspenProject // // Created by Felix Paul Kühne on 01.04.13. // Copyright (c) 2013 VideoLAN. All rights reserved. // #import @interface VLCPlaylistTableViewCell : UITableViewCell { UILabel * _titleLabel; UILabel * _subtitleLabel; UIImageView *_thumbnailView; } @property (nonatomic, retain) IBOutlet UILabel *titleLabel; @property (nonatomic, retain) IBOutlet UILabel *subtitleLabel; @property (nonatomic, retain) IBOutlet UIImageView *thumbnailView; + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident; + (CGFloat)heightOfCell; @end