mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-20 17:01:11 +08:00

Some checks are pending
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (cl, cl, windows-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, ubuntu-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (cl, Windows MSVC, windows-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (gcc, Linux GCC, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, Linux Clang, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, MacOS clang, macos-latest) (push) Waiting to run
Build / Test modules (llvm, ubuntu-latest) (push) Waiting to run
Documentation / documentation (push) Waiting to run
27 lines
549 B
C++
27 lines
549 B
C++
/// @module ftxui.component.receiver
|
|
/// @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 {
|
|
// Deprecated:
|
|
using ftxui::SenderImpl;
|
|
// Deprecated:
|
|
using ftxui::ReceiverImpl;
|
|
// Deprecated:
|
|
using ftxui::Sender;
|
|
// Deprecated:
|
|
using ftxui::Receiver;
|
|
// Deprecated:
|
|
using ftxui::MakeReceiver;
|
|
// Deprecated:
|
|
}
|