summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLRPCStruct.h
blob: e6b3bcccb7277e872ce77a0a3bb928c80ba5db9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  SDLRPCStruct.h


#import <Foundation/Foundation.h>

@interface SDLRPCStruct : NSObject {
    NSMutableDictionary *store;
}

- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
- (instancetype)init;

- (NSMutableDictionary *)serializeAsDictionary:(Byte)version;

@end