mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-15 01:18:57 +08:00
26 lines
536 B
Plaintext
26 lines
536 B
Plaintext
|
|
/**
|
||
|
|
* @file screen_interactive.cppm
|
||
|
|
* @brief Module file for the ScreenInteractive class of the Component module
|
||
|
|
*/
|
||
|
|
|
||
|
|
module;
|
||
|
|
|
||
|
|
#include <ftxui/component/screen_interactive.hpp>
|
||
|
|
|
||
|
|
export module ftxui.component.screen_interactive;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @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;
|
||
|
|
}
|