mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 09:01:11 +08:00
19 lines
326 B
C++
19 lines
326 B
C++
/**
|
|
* @file LinearGradient.cppm
|
|
* @brief Module file for the LinearGradient struct of the Dom module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/dom/linear_gradient.hpp>
|
|
|
|
export module ftxui.dom.LinearGradient;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::LinearGradient;
|
|
}
|