mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 00:52:09 +08:00
23 lines
422 B
Plaintext
23 lines
422 B
Plaintext
![]() |
/**
|
||
|
* @file String.cppm
|
||
|
* @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;
|
||
|
}
|