FTXUI/src/ftxui/screen/terminal.hpp

19 lines
280 B
C++
Raw Normal View History

2018-09-18 14:48:40 +08:00
#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 */