123456789101112131415161718192021222324252627 |
- /*****************************************************************************
- * VLCSettingsController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Gleb Pinigin <gpinigin # gmail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "IASKAppSettingsViewController.h"
- @class MediaLibraryService;
- @interface VLCSettingsController : IASKAppSettingsViewController
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithStyle:(UITableViewStyle)style NS_UNAVAILABLE;
- - (instancetype)initWithNibName:(NSString *)nibNameOrNil
- bundle:(NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
- - (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
- - (instancetype)initWithMediaLibraryService:(MediaLibraryService *)medialibraryService NS_DESIGNATED_INITIALIZER;
- @end
|