mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-22 10:06:40 +08:00

Add experimental C++20 module suppport. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
23 lines
428 B
C++
23 lines
428 B
C++
/**
|
|
* @file receiver.cppm
|
|
* @brief Module file for the Receiver class of the Component module
|
|
*/
|
|
|
|
module;
|
|
|
|
#include <ftxui/component/receiver.hpp>
|
|
|
|
export module ftxui.component.receiver;
|
|
|
|
/**
|
|
* @namespace ftxui
|
|
* @brief The FTXUI ftxui:: namespace
|
|
*/
|
|
export namespace ftxui {
|
|
using ftxui::SenderImpl;
|
|
using ftxui::ReceiverImpl;
|
|
using ftxui::Sender;
|
|
using ftxui::Receiver;
|
|
using ftxui::MakeReceiver;
|
|
}
|