Use lowercase filenames.

This commit is contained in:
ArthurSonzogni
2025-06-03 19:25:03 +02:00
parent d7247002d3
commit c302ea0752
37 changed files with 127 additions and 154 deletions

18
src/ftxui/screen/box.cppm Normal file
View File

@@ -0,0 +1,18 @@
/**
* @file box.cppm
* @brief Module file for the Box struct of the Screen module
*/
module;
#include <ftxui/screen/box.hpp>
export module ftxui.screen.box;
/**
* @namespace ftxui
* @brief The FTXUI ftxui:: namespace
*/
export namespace ftxui {
using ftxui::Box;
}