mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 09:01:11 +08:00
23 lines
399 B
C++
23 lines
399 B
C++
/**
|
|
* @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;
|
|
}
|