Files
FTXUI/src/ftxui/component/Loop.cppm

23 lines
389 B
Plaintext
Raw Normal View History

2025-03-25 18:49:18 -04:00
/**
* @file Loop.cppm
* @brief Module file for the Loop class of the Component module
*/
module;
#include <ftxui/component/loop.hpp>
export module ftxui.component.Loop;
/**
* @namespace ftxui
* @brief The FTXUI ftxui:: namespace
*/
export namespace ftxui {
using ftxui::ComponentBase;
using ftxui::Component;
using ftxui::ScreenInteractive;
using ftxui::Loop;
2025-03-29 12:26:07 -04:00
}