libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::TermDimension Struct Reference

Represents a terminal dimension in characters. More...

#include <Terminal.hxx>

+ Inheritance diagram for cosmos::TermDimension:

Public Member Functions

 TermDimension (size_t cols=0, size_t rows=0)
 
unsigned short cols () const
 
unsigned short rows () const
 

Detailed Description

Represents a terminal dimension in characters.

Definition at line 25 of file Terminal.hxx.

Constructor & Destructor Documentation

◆ TermDimension()

cosmos::TermDimension::TermDimension ( size_t cols = 0,
size_t rows = 0 )
inlineexplicit

Definition at line 28 of file Terminal.hxx.

28 {
29 ws_col = cols;
30 ws_row = rows;
31 }

Member Function Documentation

◆ cols()

unsigned short cosmos::TermDimension::cols ( ) const
inline

Definition at line 33 of file Terminal.hxx.

33{ return ws_col; }

◆ rows()

unsigned short cosmos::TermDimension::rows ( ) const
inline

Definition at line 34 of file Terminal.hxx.

34{ return ws_row; }

The documentation for this struct was generated from the following file: