22 lines
396 B
C++
22 lines
396 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
class EditorContext;
|
|
class EditorShellRuntime;
|
|
|
|
struct WorkspaceTraceEntry {
|
|
std::string channel = {};
|
|
std::string message = {};
|
|
};
|
|
|
|
std::vector<WorkspaceTraceEntry> SyncWorkspaceEvents(
|
|
EditorContext& context,
|
|
const EditorShellRuntime& runtime);
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|
|
|