mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 09:31:12 +08:00
19 lines
285 B
Plaintext
19 lines
285 B
Plaintext
![]() |
/**
|
||
|
* @file Canvas.cppm
|
||
|
* @brief Module file for the Canvas struct of the Dom module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/dom/canvas.hpp>
|
||
|
|
||
|
export module ftxui.dom.Canvas;
|
||
|
|
||
|
/**
|
||
|
* @namespace ftxui
|
||
|
* @brief The FTXUI ftxui:: namespace
|
||
|
*/
|
||
|
export namespace ftxui {
|
||
|
using ftxui::Canvas;
|
||
|
}
|