2025-11-12 12:42:37 +00:00
|
|
|
/// @module ftxui.component:ComponentBase
|
2025-06-05 07:16:53 +02:00
|
|
|
/// @brief Module file for the ComponentBase class of the Component module
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
module;
|
|
|
|
|
|
|
|
|
|
#include <ftxui/component/component_base.hpp>
|
|
|
|
|
|
2025-11-12 12:42:37 +00:00
|
|
|
export module ftxui.component:ComponentBase;
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @namespace ftxui
|
|
|
|
|
* @brief The FTXUI ftxui:: namespace
|
|
|
|
|
*/
|
|
|
|
|
export namespace ftxui {
|
|
|
|
|
using ftxui::Delegate;
|
|
|
|
|
using ftxui::Focus;
|
|
|
|
|
using ftxui::Event;
|
|
|
|
|
|
2025-11-12 12:42:37 +00:00
|
|
|
/**
|
|
|
|
|
* @namespace animation
|
|
|
|
|
* @brief The FTXUI ftxui::animation:: namespace
|
|
|
|
|
*/
|
2025-06-04 09:02:20 -04:00
|
|
|
namespace animation {
|
|
|
|
|
using ftxui::animation::Params;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using ftxui::ComponentBase;
|
|
|
|
|
using ftxui::Component;
|
|
|
|
|
using ftxui::Components;
|
|
|
|
|
}
|