notcurses/include/ncpp/NCAlign.hh

16 lines
208 B
C++
Raw Normal View History

2020-01-07 22:51:34 +00:00
#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