2025-06-05 13:16:53 +08:00
|
|
|
/// @module ftxui.component.receiver
|
|
|
|
/// @brief Module file for the Receiver class of the Component module
|
2025-06-04 21:02:20 +08:00
|
|
|
|
|
|
|
module;
|
|
|
|
|
|
|
|
#include <ftxui/component/receiver.hpp>
|
|
|
|
|
|
|
|
export module ftxui.component.receiver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @namespace ftxui
|
|
|
|
* @brief The FTXUI ftxui:: namespace
|
|
|
|
*/
|
|
|
|
export namespace ftxui {
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
using ftxui::SenderImpl;
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
using ftxui::ReceiverImpl;
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
using ftxui::Sender;
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
using ftxui::Receiver;
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
using ftxui::MakeReceiver;
|
2025-08-17 00:40:50 +08:00
|
|
|
// Deprecated:
|
2025-06-04 21:02:20 +08:00
|
|
|
}
|