VLCSettingsController.h 1.1 KB

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLCSettingsController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import "IASKAppSettingsViewController.h"
  14. @class MediaLibraryService;
  15. @interface VLCSettingsController : IASKAppSettingsViewController
  16. - (instancetype)init NS_UNAVAILABLE;
  17. - (instancetype)initWithStyle:(UITableViewStyle)style NS_UNAVAILABLE;
  18. - (instancetype)initWithNibName:(NSString *)nibNameOrNil
  19. bundle:(NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
  20. - (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
  21. - (instancetype)initWithMediaLibraryService:(MediaLibraryService *)medialibraryService NS_DESIGNATED_INITIALIZER;
  22. @end