mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-23 23:41:13 +08:00

Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
19 lines
302 B
C++
19 lines
302 B
C++
/**
|
|
* @file autoreset.cppm
|
|
* @brief Module file for the AutoReset class of the Util module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/util/autoreset.hpp>
|
|
|
|
export module ftxui.util.autoreset;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::AutoReset;
|
|
}
|