mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-24 16:21:12 +08:00
23 lines
374 B
C++
23 lines
374 B
C++
/**
|
|
* @file Color.cppm
|
|
* @brief Module file for the Color class of the Screen module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/screen/color.hpp>
|
|
|
|
export module ftxui.screen.Color;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Color;
|
|
|
|
inline namespace literals {
|
|
using ftxui::literals::operator""_rgb;
|
|
}
|
|
}
|