mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00

Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
19 lines
289 B
C++
19 lines
289 B
C++
/**
|
|
* @file pixel.cppm
|
|
* @brief Module file for the Pixel struct of the Screen module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/screen/pixel.hpp>
|
|
|
|
export module ftxui.screen.pixel;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Pixel;
|
|
}
|