| author | Jens Alfke <jens@mooseyard.com> | 
| Sat May 17 13:14:48 2008 -0700 (2008-05-17) | |
| changeset 9 | 823e7e74088e | 
| permissions | -rw-r--r-- | 
| jens@0 | 1  | 
//  | 
| jens@0 | 2  | 
// ConcurrentOperation.h  | 
| jens@0 | 3  | 
// MYUtilities  | 
| jens@0 | 4  | 
//  | 
| jens@0 | 5  | 
// Created by Jens Alfke on 2/5/08.  | 
| jens@0 | 6  | 
// Copyright 2008 Jens Alfke. All rights reserved.  | 
| jens@0 | 7  | 
//  | 
| jens@0 | 8  | 
|
| jens@0 | 9  | 
#import <Foundation/Foundation.h>  | 
| jens@0 | 10  | 
|
| jens@0 | 11  | 
|
| jens@0 | 12  | 
@interface ConcurrentOperation : NSOperation  | 
| jens@0 | 13  | 
{
 | 
| jens@0 | 14  | 
BOOL _isExecuting, _isFinished;  | 
| jens@0 | 15  | 
}  | 
| jens@0 | 16  | 
|
| jens@0 | 17  | 
- (void) finish;  | 
| jens@0 | 18  | 
|
| jens@0 | 19  | 
@end  |