mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
21 lines
350 B
Plaintext
21 lines
350 B
Plaintext
|
|
/**
|
||
|
|
* @file task.cppm
|
||
|
|
* @brief Module file for the Task class of the Component module
|
||
|
|
*/
|
||
|
|
|
||
|
|
module;
|
||
|
|
|
||
|
|
#include <ftxui/component/task.hpp>
|
||
|
|
|
||
|
|
export module ftxui.component.task;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @namespace ftxui
|
||
|
|
* @brief The FTXUI ftxui:: namespace
|
||
|
|
*/
|
||
|
|
export namespace ftxui {
|
||
|
|
using ftxui::AnimationTask;
|
||
|
|
using ftxui::Closure;
|
||
|
|
using ftxui::Task;
|
||
|
|
}
|