mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
16 lines
208 B
C++
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
|