blob: 6fe4ec00946ec0cf0ba7e31bce9fca34448f8b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// SDLSyncMsgVersion.h
//
#import "SDLRPCMessage.h"
/**
* Specifies the version number of the SDL V4 interface. This is used by both the application and SDL to declare what interface version each is using.
*
* @since SDL 1.0
*/
@interface SDLSyncMsgVersion : SDLRPCStruct
- (instancetype)initWithMajorVersion:(NSInteger)majorVersion minorVersion:(NSInteger)minorVersion;
/**
* @abstract The major version indicates versions that is not-compatible to previous versions
*
* Required, Integer, 1 - 10
*/
@property (strong) NSNumber<SDLInt> *majorVersion;
/**
* @abstract The minor version indicates a change to a previous version that should still allow to be run on an older version (with limited functionality)
*
* Required, Integer, 0 - 1000
*/
@property (strong) NSNumber<SDLInt> *minorVersion;
@end
|