blob: 5c0a378bbfc31048c99e27ce9317b412bdc5d59d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// WebserviceCommunicator.h
// Video Tuneup
//
// Created by tw on 4/25/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface WebserviceCommunicator : NSObject <NSURLConnectionDelegate>
@property (nonatomic, retain) NSFileHandle *fileHandle;
-(void)mixMusic:(NSURL *)file;
@end
|