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
218 B
C++

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