mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-24 16:21:12 +08:00
22 lines
367 B
C++
22 lines
367 B
C++
/**
|
|
* @file Event.cppm
|
|
* @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;
|
|
}
|