pokeb / asi-http-request

Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone

This URL has Read+Write access

asi-http-request / ASIProgressDelegate.h
100644 17 lines (14 sloc) 0.36 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// ASIProgressDelegate.h
//
// Created by Ben Copsey on 28/03/2008.
// Copyright 2008 All-Seeing Interactive. All rights reserved
//
 
#import <Cocoa/Cocoa.h>
 
@protocol ASIProgressDelegate
 
- (void)incrementProgress;
- (void)setDoubleValue:(double)newValue;
- (void)incrementBy:(double)amount;
- (void)setMaxValue:(double)newMax;
- (double)maxValue;
@end