-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMVFileUpload.h
executable file
·40 lines (35 loc) · 1.25 KB
/
MVFileUpload.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// MVFileUpload.h
// FileShuttle
//
// Created by Michael Villar on 12/10/11.
//
#import <Foundation/Foundation.h>
#import "MVFileUploadDelegate.h"
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
@interface MVFileUpload : NSObject {
BOOL changePermissions_;
NSString *permissionString_;
NSString *destination_;
NSString *username_;
NSString *password_;
NSURL *source_;
NSObject <MVFileUploadDelegate> *delegate_;
}
@property (retain) NSString *destination;
@property (retain) NSString *username;
@property (retain) NSString *password;
@property (retain) NSURL *source;
@property (assign) NSObject <MVFileUploadDelegate> *delegate;
@property (assign) BOOL changePermissions;
@property (retain) NSString *permissionString;
- (id)initWithDestination:(NSString *)destination
username:(NSString *)username
password:(NSString *)password
source:(NSURL *)source
delegate:(NSObject <MVFileUploadDelegate> *)delegate;
- (void)start;
- (void)cancel;
@end