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