mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
19 lines
358 B
Plaintext
19 lines
358 B
Plaintext
|
|
/**
|
||
|
|
* @file captured_mouse.cppm
|
||
|
|
* @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;
|
||
|
|
}
|