21 lines
461 B
C++
21 lines
461 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
class ProductEditorContext;
|
|
class ProductEditorWorkspace;
|
|
|
|
struct ProductEditorWorkspaceTraceEntry {
|
|
std::string channel = {};
|
|
std::string message = {};
|
|
};
|
|
|
|
std::vector<ProductEditorWorkspaceTraceEntry> ConsumeProductEditorWorkspaceEvents(
|
|
ProductEditorContext& context,
|
|
const ProductEditorWorkspace& workspace);
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|