mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-25 17:11:13 +08:00
28 lines
543 B
Plaintext
28 lines
543 B
Plaintext
![]() |
/**
|
||
|
* @file ComponentBase.cppm
|
||
|
* @brief Module file for the ComponentBase class of the Component module
|
||
|
*/
|
||
|
|
||
|
module;
|
||
|
|
||
|
#include <ftxui/component/component_base.hpp>
|
||
|
|
||
|
export module ftxui.component.ComponentBase;
|
||
|
|
||
|
/**
|
||
|
* @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;
|
||
|
}
|