1 #ifndef __NCPP_NCALIGN_HH 2 #define __NCPP_NCALIGN_HH 3 4 #include <notcurses/notcurses.h> 5 6 namespace ncpp 7 { 8 enum class NCAlign 9 { 10 Left = NCALIGN_LEFT, 11 Center = NCALIGN_CENTER, 12 Right = NCALIGN_RIGHT, 13 }; 14 } 15 #endif 16
1 #ifndef __NCPP_NCALIGN_HH 2 #define __NCPP_NCALIGN_HH 3 4 #include <notcurses/notcurses.h> 5 6 namespace ncpp 7 { 8 enum class NCAlign 9 { 10 Left = NCALIGN_LEFT, 11 Center = NCALIGN_CENTER, 12 Right = NCALIGN_RIGHT, 13 }; 14 } 15 #endif 16