/***************************************************************************** * VLCStreamingHistoryCell.h * VLC for iOS ***************************************************************************** * Copyright (c) 2016 VideoLAN. All rights reserved. * $Id$ * * Authors: Adam Viaud * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @protocol VLCStreamingHistoryCellMenuItemProtocol - (void)renameStreamFromCell:(UITableViewCell *)cell; @end @interface VLCStreamingHistoryCell : UITableViewCell @property (weak, nonatomic) id delegate; - (void)renameStream:(id)sender; - (void)customizeAppearance; @end