2025-11-12 12:42:37 +00:00
|
|
|
/// @module ftxui.component:ScreenInteractive
|
2025-06-05 07:16:53 +02:00
|
|
|
/// @brief Module file for the ScreenInteractive class of the Component module
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
module;
|
|
|
|
|
|
|
|
|
|
#include <ftxui/component/screen_interactive.hpp>
|
|
|
|
|
|
2025-11-12 12:42:37 +00:00
|
|
|
export module ftxui.component:ScreenInteractive;
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @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;
|
|
|
|
|
}
|