mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-10-01 17:29:07 +08:00

Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
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;
|
|
}
|