ASIProgressDelegate.h
356 Bytes
//
// 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)setDoubleValue:(double)newValue;
- (double)doubleValue;
- (void)incrementBy:(double)amount;
- (void)setMaxValue:(double)newMax;
- (double)maxValue;
@end