/***************************************************************************** * MediaCategory.swift * VLC for iOS ***************************************************************************** * Copyright (c) 2018 VideoLAN. All rights reserved. * $Id$ * * Authors: Soomin Lee * * Refer to the COPYING file of the official project for license. *****************************************************************************/ class VLCMovieCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCShowEpisodeCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = ShowEpisodeModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCVideoPlaylistCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCTrackCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = AudioModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCGenreCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCArtistCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCAlbumCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } } class VLCAudioPlaylistCategoryViewController: VLCMediaCategoryViewController { init(_ services: Services) { let model = VideoModel(medialibrary: services.medialibraryManager) super.init(services: services, category: model) } }