VLCCloudStorageTableViewController.h 1008 B

1234567891011121314151617181920212223242526
  1. /*****************************************************************************
  2. * VLCCloudStorageTableViewController.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. * Fabio Ritrovato <sephiroth87 # videolan.org>
  10. * Carola Nitz <nitz.carola # googlemail.com>
  11. *
  12. * Refer to the COPYING file of the official project for license.
  13. *****************************************************************************/
  14. @interface VLCCloudStorageTableViewController : UIViewController
  15. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  16. @property (nonatomic, strong) IBOutlet UIView *loginToCloudStorageView;
  17. @property (nonatomic, strong) IBOutlet UIButton *loginButton;
  18. @property (nonatomic, strong) IBOutlet UIImageView *cloudStorageLogo;
  19. - (IBAction)loginAction:(id)sender;
  20. - (void)updateViewAfterSessionChange;
  21. @end