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