summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCStruct.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLRPCStruct.h')
-rw-r--r--SmartDeviceLink/SDLRPCStruct.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLRPCStruct.h b/SmartDeviceLink/SDLRPCStruct.h
new file mode 100644
index 000000000..e6b3bcccb
--- /dev/null
+++ b/SmartDeviceLink/SDLRPCStruct.h
@@ -0,0 +1,16 @@
+//
+// SDLRPCStruct.h
+
+
+#import <Foundation/Foundation.h>
+
+@interface SDLRPCStruct : NSObject {
+ NSMutableDictionary *store;
+}
+
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+- (instancetype)init;
+
+- (NSMutableDictionary *)serializeAsDictionary:(Byte)version;
+
+@end