mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 09:01:11 +08:00
20 lines
349 B
C++
20 lines
349 B
C++
/**
|
|
* @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;
|
|
} |