Add modules support

This commit is contained in:
Toyosatomimi no Miko
2025-03-25 18:49:18 -04:00
parent 5bf8ee819b
commit 69928b374e
40 changed files with 985 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/**
* @file CapturedMouse.cppm
* @brief Module file for the CapturedMouseInterface class of the Component module
*/
module;
#include <ftxui/component/captured_mouse.hpp>
export module ftxui.component.CapturedMouse;
/**
* @namespace ftxui
* @brief The FTXUI ftxui:: namespace
*/
export namespace ftxui {
using ftxui::CapturedMouseInterface;
}