12 lines
240 B
C++
12 lines
240 B
C++
#pragma once
|
|
#include "runtime/Plot.hpp"
|
|
#include <unordered_map>
|
|
|
|
namespace aethera::mcp {
|
|
|
|
struct Control_Service::Private {
|
|
std::unordered_map<std::string, std::shared_ptr<web::Plot>> plots; /* Plot 唯一实例注册表。 */
|
|
};
|
|
|
|
}
|