blob: f4886d3122187b939733f18a52786ef6a6c34ddc (
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
30
31
32
33
34
35
|
// SDLMassageCushion.h
//
#import "SDLEnum.h"
/**
* The List possible cushions of a multi-contour massage seat.
*/
typedef SDLEnum SDLMassageCushion SDL_SWIFT_ENUM;
/**
* @abstract TOP LUMBAR cushions of a multi-contour massage seat
*/
extern SDLMassageCushion const SDLMassageCushionTopLumbar;
/**
* @abstract MIDDLE LUMBAR cushion of a multi-contour massage seat
*/
extern SDLMassageCushion const SDLMassageCushionMiddleLumbar;
/**
* @abstract BOTTOM LUMBAR cushion of a multi-contour massage seat
*/
extern SDLMassageCushion const SDLMassageCushionBottomLumbar;
/**
* @abstract BACK BOLSTERS cushion of a multi-contour massage seat
*/
extern SDLMassageCushion const SDLMassageCushionBackBolsters;
/**
* @abstract SEAT BOLSTERS cushion of a multi-contour massage seat
*/
extern SDLMassageCushion const SDLMassageCushionSeatBolsters;
|