// // BloggenUploadHelperUploader.h // Bloggen // // Created by Davis Remmel on 2/14/14. // Copyright (c) 2014 Davis Remmel. All rights reserved. // #import @interface BloggenUploadHelperUploader : NSObject - (void)rsyncDirectoryBookmark:(NSData *)directoryBookmark withUsername:(NSString *)username withSSHBookmark:(NSData *)sshBookmark withKeyFileBookmark:(NSData *)keyFileBookmark toServer:(NSString *)server exitStatus:(void (^)(int))exitStatus; - (void)ftpChangedFilesInArray:(NSArray *)changedFilesArary withDirectoryBookmark:(NSData *)directoryBookmark withUsername:(NSString *)username withPassword:(NSString *)password toServer:(NSString *)server error:(void (^)(int))returnError; - (void)s3ChangedFilesInArray:(NSArray *)changedFilesArray withDirectoryBookmark:(NSData *)directoryBookmark withAccessKeyID:(NSString *)accessKeyID withSecretAccessKey:(NSString *)secretAccessKey toBucket:(NSString *)server error:(void (^)(int))returnError; @end