Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (820 Bytes)

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

    
9
#import <UIKit/UIKit.h>
10
#import "SampleViewController.h"
11

    
12
@class ASINetworkQueue;
13

    
14
@interface QueueViewController : SampleViewController {
15
        ASINetworkQueue *networkQueue;
16
        
17
        UIImageView *imageView1;
18
        UIImageView *imageView2;
19
        UIImageView *imageView3;
20
        UIProgressView *progressIndicator;
21
        UISwitch *accurateProgress;
22
        UIProgressView *imageProgressIndicator1;
23
        UIProgressView *imageProgressIndicator2;
24
        UIProgressView *imageProgressIndicator3;
25
        UILabel *imageLabel1;
26
        UILabel *imageLabel2;
27
        UILabel *imageLabel3;
28
        BOOL failed;
29
        
30
}
31

    
32
- (IBAction)fetchThreeImages:(id)sender;
33

    
34
@end