mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-28 02:41:11 +08:00
19 lines
279 B
C++
19 lines
279 B
C++
/**
|
|
* @file Box.cppm
|
|
* @brief Module file for the Box struct of the Screen module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/screen/box.hpp>
|
|
|
|
export module ftxui.screen.Box;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Box;
|
|
}
|