FTXUI/src/ftxui/dom/node.cppm
2025-06-05 07:12:30 +02:00

24 lines
421 B
C++

/// @module ftxui.dom.node
/// @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;
}