1 2 #pragma once 3 4 enum class FanSpeedDirection 5 { 6 DOWN, 7 UP, 8 NEUTRAL, /* not sure this will ever happen, but for completeness. */ 9 }; 10