You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/include/ncpp/NCAlign.hh

16 lines
208 B
C++

5 years ago
#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