This commit is contained in:
ArthurSonzogni
2025-04-10 14:45:45 +02:00
parent 85c3dc45ca
commit 0c67566427
40 changed files with 109 additions and 92 deletions

22
src/ftxui/util/Ref.cppm Normal file
View File

@@ -0,0 +1,22 @@
/**
* @file Ref.cppm
* @brief Module file for the Ref classes of the Util module
*/
module;
#include <ftxui/util/ref.hpp>
export module ftxui.util.Ref;
/**
* @namespace ftxui
* @brief The FTXUI ftxui:: namespace
*/
export namespace ftxui {
using ftxui::ConstRef;
using ftxui::Ref;
using ftxui::StringRef;
using ftxui::ConstStringRef;
using ftxui::ConstStringListRef;
}