summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLScrollableMessageResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLScrollableMessageResponse.h')
-rw-r--r--SmartDeviceLink/SDLScrollableMessageResponse.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLScrollableMessageResponse.h b/SmartDeviceLink/SDLScrollableMessageResponse.h
new file mode 100644
index 000000000..e75b157ec
--- /dev/null
+++ b/SmartDeviceLink/SDLScrollableMessageResponse.h
@@ -0,0 +1,26 @@
+// SDLScrollableMessageResponse.h
+//
+
+
+#import "SDLRPCResponse.h"
+
+/**
+ * Scrollable Message Response is sent, when SDLScrollableMessage has been called
+ *
+ * Since SmartDeviceLink 2.0
+ */
+@interface SDLScrollableMessageResponse : SDLRPCResponse {
+}
+
+/**
+ * @abstract Constructs a new SDLScrollableMessageResponse object
+ */
+- (instancetype)init;
+/**
+ * @abstract Constructs a new SDLScrollableMessageResponse object indicated by the NSMutableDictionary
+ * parameter
+ * @param dict The dictionary to use
+ */
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@end