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/src/libcpp/Reel.cc

21 lines
514 B
C++

5 years ago
#include <ncpp/Plane.hh>
#include <ncpp/Reel.hh>
5 years ago
#include <ncpp/NCBox.hh>
using namespace ncpp;
ncreel_options NcReel::default_options = {
5 years ago
/* bordermask */ NCBox::MaskBottom | NCBox::MaskTop | NCBox::MaskRight | NCBox::MaskLeft,
/* borderchan */ 0,
/* tabletmask */ 0,
/* tabletchan */ 0,
/* focusedchan */ 0,
/* bgchannel */ 0,
/* flags */ 0,
5 years ago
};
Plane* NcReel::get_plane () const noexcept
5 years ago
{
return Plane::map_plane (ncreel_plane (reel));
5 years ago
}