mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
Add modules support (#1015)
Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
This commit is contained in:
19
src/ftxui/dom/table.cppm
Normal file
19
src/ftxui/dom/table.cppm
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* @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;
|
||||
}
|
||||
Reference in New Issue
Block a user