mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
19 lines
288 B
Plaintext
19 lines
288 B
Plaintext
![]() |
/**
|
||
|
* @file Image.cppm
|
||
|
* @brief Module file for the Image class of the Screen module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/screen/image.hpp>
|
||
|
|
||
|
export module ftxui.screen.Image;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::Image;
|
||
|
}
|