// // VLCAddMediaViewController.h // VLC for iOS // // Created by Felix Paul Kühne on 19.05.13. // Copyright (c) 2013 VideoLAN. All rights reserved. // #import @interface VLCAddMediaViewController : UIViewController { NSURL *_pasteURL; } @property (strong, nonatomic) IBOutlet UIButton *dismissButton; @property (strong, nonatomic) IBOutlet UIButton *aboutButton; @property (strong, nonatomic) IBOutlet UIButton *openNetworkStreamButton; @property (strong, nonatomic) IBOutlet UIButton *downloadFromHTTPServerButton; - (IBAction)openAboutPanel:(id)sender; - (IBAction)openNetworkStream:(id)sender; - (IBAction)downloadFromHTTPServer:(id)sender; @end