summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLListFilesOperation.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
commitebaf2cdcfd4792041764b116865f7d9a162423d3 (patch)
tree2e53f7c2f25b42e68fbc6e34f7bba1d86532c00e /SmartDeviceLink/SDLListFilesOperation.h
parent2cb26cbf102bdb309a67880182041393b5ae2559 (diff)
downloadsdl_ios-ebaf2cdcfd4792041764b116865f7d9a162423d3.tar.gz
In progress moving of files
Diffstat (limited to 'SmartDeviceLink/SDLListFilesOperation.h')
-rw-r--r--SmartDeviceLink/SDLListFilesOperation.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/SmartDeviceLink/SDLListFilesOperation.h b/SmartDeviceLink/SDLListFilesOperation.h
deleted file mode 100644
index fc8453820..000000000
--- a/SmartDeviceLink/SDLListFilesOperation.h
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// SDLListFilesOperation.h
-// SmartDeviceLink-iOS
-//
-// Created by Joel Fischer on 5/25/16.
-// Copyright © 2016 smartdevicelink. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-#import "SDLAsynchronousOperation.h"
-#import "SDLFileManagerConstants.h"
-
-@protocol SDLConnectionManagerType;
-
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface SDLListFilesOperation : SDLAsynchronousOperation
-
-/**
- * Create an instance of a list files operation which will ask the remote system which files it has on its system already.
- *
- * @param connectionManager The connection manager which will handle transporting the request to the remote system.
- * @param completionHandler A completion handler for when the response returns.
- *
- * @return An instance of SDLListFilesOperation
- */
-- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager completionHandler:(nullable SDLFileManagerListFilesCompletionHandler)completionHandler;
-
-/**
- The connection manager which will handle transporting the request to the remote system.
- */
-@property (weak, nonatomic, readonly) id<SDLConnectionManagerType> connectionManager;
-
-/**
- A completion handler for when the response returns.
- */
-@property (copy, nonatomic, nullable, readonly) SDLFileManagerListFilesCompletionHandler completionHandler;
-
-@end
-
-NS_ASSUME_NONNULL_END