#pragma once #include "lumacs/ui_interface.hpp" #include <memory> namespace lumacs { // Factory function to create a TUI editor instance std::unique_ptr<IEditorView> create_tui_editor(); } // namespace lumacs