Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / iPhone Sample / UploadViewController.h @ be116d22

History | View | Annotate | Download (642 Bytes)

1
//
2
//  UploadViewController.h
3
//  Part of the ASIHTTPRequest sample project - see http://allseeing-i.com/ASIHTTPRequest for details
4
//
5
//  Created by Ben Copsey on 31/12/2008.
6
//  Copyright 2008 All-Seeing Interactive. All rights reserved.
7
//
8

    
9
#import <UIKit/UIKit.h>
10
#import "SampleViewController.h"
11
@class ASIFormDataRequest;
12

    
13
@interface UploadViewController : SampleViewController {
14
        
15
        ASIFormDataRequest *request;
16
        
17
        IBOutlet UIProgressView *progressIndicator;
18
        UITextView *resultView;
19
}
20

    
21
- (IBAction)performLargeUpload:(id)sender;
22
- (IBAction)toggleThrottling:(id)sender;
23

    
24
@property (retain, nonatomic) ASIFormDataRequest *request;
25
@end