mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 09:01:11 +08:00
25 lines
427 B
Plaintext
25 lines
427 B
Plaintext
![]() |
/**
|
||
|
* @file Screen.cppm
|
||
|
* @brief Module file for the Screen class of the Screen module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/screen/screen.hpp>
|
||
|
|
||
|
export module ftxui.screen.Screen;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
namespace Dimension {
|
||
|
using ftxui::Dimension::Fixed;
|
||
|
using ftxui::Dimension::Full;
|
||
|
}
|
||
|
|
||
|
using ftxui::Image;
|
||
|
using ftxui::Screen;
|
||
|
}
|