mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-24 16:21:12 +08:00
19 lines
299 B
Plaintext
19 lines
299 B
Plaintext
![]() |
/**
|
||
|
* @file Selection.cppm
|
||
|
* @brief Module file for the Selection class of the Dom module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/dom/selection.hpp>
|
||
|
|
||
|
export module ftxui.dom.Selection;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::Selection;
|
||
|
}
|