notcurses/include/ncpp/NCScale.hh

16 lines
207 B
C++
Raw Normal View History

2020-01-07 22:51:34 +00:00
#ifndef __NCPP_NCSCALE_HH
#define __NCPP_NCSCALE_HH
#include <notcurses.h>
namespace ncpp
{
enum class NCScale
{
None = NCSCALE_NONE,
Scale = NCSCALE_SCALE,
Stretch = NCSCALE_STRETCH,
};
}
#endif