mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-26 01:21:12 +08:00
19 lines
285 B
C++
19 lines
285 B
C++
/**
|
|
* @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;
|
|
}
|