diff options
| author | Brian Jordan | 2012-04-26 14:25:43 -0400 | 
|---|---|---|
| committer | Brian Jordan | 2012-04-26 14:25:43 -0400 | 
| commit | cf1969fa1dc7f944b5edf37d04b84996ef0b6320 (patch) | |
| tree | a8f57dc1ee5405350d6b5e872cf76d542a5d7796 /Video Tuneup/Classes/WebserviceCommunicator.h | |
| parent | 03668582bcd90409def595ea6f4c463e29557664 (diff) | |
| download | Video-Tuneup-cf1969fa1dc7f944b5edf37d04b84996ef0b6320.tar.bz2 | |
fix build, add ViewController reference to WebserviceCommunicator
Diffstat (limited to 'Video Tuneup/Classes/WebserviceCommunicator.h')
| -rw-r--r-- | Video Tuneup/Classes/WebserviceCommunicator.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/Video Tuneup/Classes/WebserviceCommunicator.h b/Video Tuneup/Classes/WebserviceCommunicator.h index 5c0a378..3eb9e7a 100644 --- a/Video Tuneup/Classes/WebserviceCommunicator.h +++ b/Video Tuneup/Classes/WebserviceCommunicator.h @@ -7,11 +7,16 @@  //  #import <Foundation/Foundation.h> +#import "ViewController.h" -@interface WebserviceCommunicator : NSObject <NSURLConnectionDelegate> +@interface WebserviceCommunicator : NSObject <NSURLConnectionDelegate>{ +    ViewController* _viewController; +}  @property (nonatomic, retain) NSFileHandle *fileHandle; +@property (nonatomic, retain) NSString *songPath;  -(void)mixMusic:(NSURL *)file; +-(void)setParentController:(ViewController *)viewController;  @end | 
