// // VLCHTTPUploaderViewController.h // VLC for iOS // // Created by Jean-Baptiste Kempf on 19/05/13. // Copyright (c) 2013 VideoLAN. All rights reserved. // #import #import "HTTPConnection.h" @class HTTPServer; @interface VLCHTTPUploaderController : NSObject { HTTPServer *httpServer; } -(BOOL)changeHTTPServerState:(BOOL)state; @end @class MultipartFormDataParser; @interface VLCHTTPConnection : HTTPConnection { MultipartFormDataParser* parser; NSFileHandle* storeFile; NSMutableArray* uploadedFiles; } @end