Files
FTXUI/src/ftxui/component/Event.cppm

22 lines
367 B
Plaintext
Raw Normal View History

2025-03-25 18:49:18 -04: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-29 12:26:07 -04:00
}