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