1 2 3 4 5 6 7 8 9 10 11
#ifndef BACKLIGHT_H #define BACKLIGHT_H namespace Backlight { void lower(); void restore(); void set(int level); } #endif // BACKLIGHT_H