mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00

Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
26 lines
420 B
C++
26 lines
420 B
C++
/**
|
|
* @file node.cppm
|
|
* @brief Module file for the Node class of the Dom module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/dom/node.hpp>
|
|
|
|
export module ftxui.dom.node;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Node;
|
|
using ftxui::Screen;
|
|
|
|
using ftxui::Element;
|
|
using ftxui::Elements;
|
|
|
|
using ftxui::Render;
|
|
using ftxui::GetNodeSelectedContent;
|
|
}
|