mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-07 01:41:12 +08:00
19 lines
280 B
C++
19 lines
280 B
C++
#ifndef FTXUI_CORE_TERMINAL_HPP
|
|
#define FTXUI_CORE_TERMINAL_HPP
|
|
|
|
namespace ftxui {
|
|
|
|
class Terminal {
|
|
public:
|
|
struct Dimensions {
|
|
int dimx;
|
|
int dimy;
|
|
};
|
|
|
|
static Dimensions Size();
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_CORE_TERMINAL_HPP */
|