summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLManagerDelegate.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-06-07 11:00:30 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-06-07 11:00:30 -0400
commit3248c4f94a2f295349bcf774b04495e562c2d2a6 (patch)
tree547b2152d03efa900c6c6a46190b3259d72b1329 /SmartDeviceLink/SDLManagerDelegate.h
parentf0d10469e0852c3484f7a097ad572383e88b286d (diff)
downloadsdl_ios-3248c4f94a2f295349bcf774b04495e562c2d2a6.tar.gz
Add a manager delegate for clearer readiness notification
Diffstat (limited to 'SmartDeviceLink/SDLManagerDelegate.h')
-rw-r--r--SmartDeviceLink/SDLManagerDelegate.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLManagerDelegate.h b/SmartDeviceLink/SDLManagerDelegate.h
new file mode 100644
index 000000000..2a0c130ef
--- /dev/null
+++ b/SmartDeviceLink/SDLManagerDelegate.h
@@ -0,0 +1,15 @@
+//
+// SDLManagerDelegate.h
+// SmartDeviceLink-iOS
+//
+// Created by Joel Fischer on 6/7/16.
+// Copyright © 2016 smartdevicelink. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+@protocol SDLManagerDelegate <NSObject>
+
+- (void)managerDidBecomeReady;
+
+@end