mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 17:11:13 +08:00
25 lines
533 B
C++
25 lines
533 B
C++
/**
|
|
* @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;
|
|
} |