blob: e688b9fc2ad999a4a45ea681e3926fd4f0fd7400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SDLComponentVolumeStatus.m
//
#import "SDLComponentVolumeStatus.h"
SDLComponentVolumeStatus const SDLComponentVolumeStatusUnknown = @"UNKNOWN";
SDLComponentVolumeStatus const SDLComponentVolumeStatusNormal = @"NORMAL";
SDLComponentVolumeStatus const SDLComponentVolumeStatusLow = @"LOW";
SDLComponentVolumeStatus const SDLComponentVolumeStatusFault = @"FAULT";
SDLComponentVolumeStatus const SDLComponentVolumeStatusAlert = @"ALERT";
SDLComponentVolumeStatus const SDLComponentVolumeStatusNotSupported = @"NOT_SUPPORTED";
|