summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLListFilesOperation.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-27 14:34:27 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-27 14:34:27 -0400
commit8cbaaf1788f0d6f6fee710db4c12f34c4d12aca4 (patch)
tree61bf8e8760ee61b76a56adb4b1541d119f4a2beb /SmartDeviceLink/SDLListFilesOperation.h
parent85027d6e03a997cf585c965ff453d36f3ce12adc (diff)
parente274adde593fead0a5b787e7ef024d20f983dacb (diff)
downloadsdl_ios-8cbaaf1788f0d6f6fee710db4c12f34c4d12aca4.tar.gz
Merge branch 'develop' into feature/enhanced_framework
Conflicts: README.md SmartDeviceLink-iOS.xcodeproj/project.pbxproj
Diffstat (limited to 'SmartDeviceLink/SDLListFilesOperation.h')
-rw-r--r--SmartDeviceLink/SDLListFilesOperation.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLListFilesOperation.h b/SmartDeviceLink/SDLListFilesOperation.h
new file mode 100644
index 000000000..61818759c
--- /dev/null
+++ b/SmartDeviceLink/SDLListFilesOperation.h
@@ -0,0 +1,23 @@
+//
+// SDLListFilesOperation.h
+// SmartDeviceLink-iOS
+//
+// Created by Joel Fischer on 5/25/16.
+// Copyright © 2016 smartdevicelink. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+#import "SDLFileManagerConstants.h"
+
+@protocol SDLConnectionManagerType;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface SDLListFilesOperation : NSOperation
+
+- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager completionHandler:(nullable SDLFileManagerListFilesCompletion)completionHandler;
+
+@end
+
+NS_ASSUME_NONNULL_END