mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-11-15 11:38:56 +08:00
20 lines
374 B
C++
20 lines
374 B
C++
/// @module ftxui.component.event
|
|
/// @brief Module file for the Event struct of the Component module
|
|
|
|
module;
|
|
|
|
#include <ftxui/component/event.hpp>
|
|
|
|
export module ftxui.component.event;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::ScreenInteractive;
|
|
using ftxui::ComponentBase;
|
|
|
|
using ftxui::Event;
|
|
}
|