mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
25 lines
533 B
Plaintext
25 lines
533 B
Plaintext
![]() |
/**
|
||
|
* @file ScreenInteractive.cppm
|
||
|
* @brief Module file for the ScreenInteractive class of the Component module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/component/screen_interactive.hpp>
|
||
|
|
||
|
export module ftxui.component.ScreenInteractive;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::ComponentBase;
|
||
|
using ftxui::Loop;
|
||
|
using ftxui::Event;
|
||
|
using ftxui::Component;
|
||
|
|
||
|
using ftxui::Screen;
|
||
|
using ftxui::ScreenInteractivePrivate;
|
||
|
using ftxui::ScreenInteractive;
|
||
|
}
|