Files
FTXUI/src/ftxui/screen/string.cppm

21 lines
426 B
Plaintext
Raw Normal View History

2025-06-05 07:16:53 +02:00
/// @module ftxui.screen.string
/// @brief Module file for string functions of the Screen module
module;
#include <ftxui/screen/string.hpp>
export module ftxui.screen.string;
/**
* @namespace ftxui
* @brief The FTXUI ftxui:: namespace
*/
export namespace ftxui {
using ftxui::to_string;
using ftxui::to_wstring;
using ftxui::string_width;
using ftxui::Utf8ToGlyphs;
using ftxui::CellToGlyphIndex;
}