mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
17 lines
365 B
C++
17 lines
365 B
C++
/// @module ftxui.component.captured_mouse
|
|
/// @brief Module file for the CapturedMouseInterface class of the Component module
|
|
|
|
module;
|
|
|
|
#include <ftxui/component/captured_mouse.hpp>
|
|
|
|
export module ftxui.component.captured_mouse;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::CapturedMouseInterface;
|
|
}
|