mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 17:11:13 +08:00
27 lines
557 B
Plaintext
27 lines
557 B
Plaintext
![]() |
/**
|
||
|
* @file Terminal.cppm
|
||
|
* @brief Module file for the Terminal namespace of the Screen module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/screen/terminal.hpp>
|
||
|
|
||
|
export module ftxui.screen.Terminal;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::Dimensions;
|
||
|
|
||
|
namespace Terminal {
|
||
|
using ftxui::Terminal::Size;
|
||
|
using ftxui::Terminal::SetFallbackSize;
|
||
|
using ftxui::Terminal::Color;
|
||
|
using ftxui::Terminal::ColorSupport;
|
||
|
using ftxui::Terminal::SetColorSupport;
|
||
|
}
|
||
|
}
|