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

20 lines
484 B
C++

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