mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
20 lines
312 B
Plaintext
20 lines
312 B
Plaintext
|
|
/**
|
||
|
|
* @file table.cppm
|
||
|
|
* @brief Module file for the Table class of the Dom module
|
||
|
|
*/
|
||
|
|
|
||
|
|
module;
|
||
|
|
|
||
|
|
#include <ftxui/dom/table.hpp>
|
||
|
|
|
||
|
|
export module ftxui.dom.table;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @namespace ftxui
|
||
|
|
* @brief The FTXUI ftxui:: namespace
|
||
|
|
*/
|
||
|
|
export namespace ftxui {
|
||
|
|
using ftxui::Table;
|
||
|
|
using ftxui::TableSelection;
|
||
|
|
}
|