Line data Source code
1 : /// Category of different device types. 2 : 3 2 : enum DeviceType { 4 : /// A smart watch 5 : watch, 6 : 7 : /// A mobile phone 8 : mobile, 9 : 10 : /// A tablet 11 : tablet, 12 : 13 : /// A desktop screen 14 : desktop, 15 : 16 : /// Undefined device type 17 : /// Ofen used for custom devices with very specific dimensions 18 : unknown, 19 : }