/***************************************************************************** * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * Felix Paul Kühne * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @interface VLCDeletionCapableViewController : UIViewController @property (nonatomic, weak, nullable) IBOutlet UIView *deleteHintView; @property (nonatomic, readonly, nullable) NSIndexPath *indexPathToDelete; @property (nonatomic, readonly, nullable) NSString *itemToDelete; - (void)deleteFileAtIndex:(NSIndexPath * _Nullable)indexPathToDelete; @end