VLCBoxTableViewController.h 766 B

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLCBoxTableViewController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Carola Nitz <nitz.carola # googlemail.com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #if TARGET_OS_IOS
  13. #import "VLCCloudStorageTableViewController.h"
  14. @interface VLCBoxTableViewController : VLCCloudStorageTableViewController
  15. @end
  16. #else
  17. #import "VLCCloudStorageTVTableViewController.h"
  18. @interface VLCBoxTableViewController : VLCCloudStorageTVTableViewController
  19. @end
  20. #endif