FTXUI/src/ftxui/screen/string.cppm

23 lines
422 B
Plaintext
Raw Normal View History

2025-03-26 06:49:18 +08:00
/**
2025-06-04 01:25:03 +08:00
* @file string.cppm
2025-03-26 06:49:18 +08:00
* @brief Module file for string functions of the Screen module
*/
module;
#include <ftxui/screen/string.hpp>
2025-06-04 01:25:03 +08:00
export module ftxui.screen.string;
2025-03-26 06:49:18 +08:00
/**
* @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;
}