15 lines
274 B
C++
15 lines
274 B
C++
#pragma once
|
|
|
|
#include "RuntimeJson.h"
|
|
|
|
#include <string>
|
|
|
|
class RuntimeStore;
|
|
|
|
class RuntimeStatePresenter
|
|
{
|
|
public:
|
|
static std::string BuildRuntimeStateJson(const RuntimeStore& runtimeStore);
|
|
static JsonValue BuildRuntimeStateValue(const RuntimeStore& runtimeStore);
|
|
};
|