mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-11-15 11:38:56 +08:00
Follow-up to #1015. This pull request replaces the full modules that represent headers, with partitions, to emphasise the belonging of the header to the module. This should hopefully provide a speedup to compilation, and confuse users less by aggregating the usable modules into a smaller set.
19 lines
357 B
C++
19 lines
357 B
C++
/// @module ftxui.component:Task
|
|
/// @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;
|
|
}
|