mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 17:11:13 +08:00
19 lines
298 B
C++
19 lines
298 B
C++
/**
|
|
* @file Direction.cppm
|
|
* @brief Module file for the Direction enum of the Dom module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/dom/direction.hpp>
|
|
|
|
export module ftxui.dom.Direction;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Direction;
|
|
}
|