mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
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;
|
|
}
|