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


#import <Foundation/Foundation.h>

#import "SDLNames.h"

@interface SDLRPCStruct : NSObject {
    NSMutableDictionary *store;
}

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

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

@end