mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
27 lines
553 B
C++
27 lines
553 B
C++
/// @module ftxui.component.component_base
|
|
/// @brief Module file for the ComponentBase class of the Component module
|
|
|
|
module;
|
|
|
|
#include <ftxui/component/component_base.hpp>
|
|
|
|
export module ftxui.component.component_base;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::Delegate;
|
|
using ftxui::Focus;
|
|
using ftxui::Event;
|
|
|
|
namespace animation {
|
|
using ftxui::animation::Params;
|
|
}
|
|
|
|
using ftxui::ComponentBase;
|
|
using ftxui::Component;
|
|
using ftxui::Components;
|
|
}
|