notcurses/include/ncpp/NCAlign.hh
2020-01-22 06:47:43 -05:00

16 lines
208 B
C++

#ifndef __NCPP_NCALIGN_HH
#define __NCPP_NCALIGN_HH
#include <notcurses.h>
namespace ncpp
{
enum class NCAlign
{
Left = NCALIGN_LEFT,
Center = NCALIGN_CENTER,
Right = NCALIGN_RIGHT,
};
}
#endif