mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
21 lines
342 B
C++
21 lines
342 B
C++
/**
|
|
* @file ColorInfo.cppm
|
|
* @brief Module file for the ColorInfo struct of the Screen module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/screen/color_info.hpp>
|
|
|
|
export module ftxui.screen.ColorInfo;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::ColorInfo;
|
|
|
|
using ftxui::GetColorInfo;
|
|
}
|