mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 00:52:09 +08:00
18 lines
355 B
Plaintext
18 lines
355 B
Plaintext
![]() |
/**
|
||
|
* @file CapturedMouse.cppm
|
||
|
* @brief Module file for the CapturedMouseInterface class of the Component module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/component/captured_mouse.hpp>
|
||
|
|
||
|
export module ftxui.component.CapturedMouse;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::CapturedMouseInterface;
|
||
|
}
|