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



#import "SDLRPCMessage.h"

#import "SDLImageResolution.h"
#import "SDLTouchEventCapabilities.h"

@interface SDLScreenParams : SDLRPCStruct {}

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

@property(strong) SDLImageResolution* resolution;
@property(strong) SDLTouchEventCapabilities* touchEventAvailable;

@end