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