VLCStreamingHistoryCell.h 802 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLCStreamingHistoryCell.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2016 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Adam Viaud <mcnight # mcnight.fr>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <UIKit/UIKit.h>
  13. @protocol VLCStreamingHistoryCellMenuItemProtocol
  14. - (void)renameStreamFromCell:(UITableViewCell *)cell;
  15. @end
  16. @interface VLCStreamingHistoryCell : UITableViewCell
  17. @property (weak, nonatomic) id<VLCStreamingHistoryCellMenuItemProtocol> delegate;
  18. - (void)renameStream:(id)sender;
  19. - (void)customizeAppearance;
  20. @end