FTXUI/src/ftxui/component/Event.cppm

22 lines
367 B
Plaintext
Raw Normal View History

2025-03-26 06:49:18 +08:00
/**
* @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;
2025-03-30 00:26:07 +08:00
}