#pragma once #include #include namespace XCEngine::UI::Editor::App { class ProductEditorContext; class ProductEditorWorkspace; struct ProductEditorWorkspaceTraceEntry { std::string channel = {}; std::string message = {}; }; std::vector ConsumeProductEditorWorkspaceEvents( ProductEditorContext& context, const ProductEditorWorkspace& workspace); } // namespace XCEngine::UI::Editor::App