DataLoader类的实现
| 105 | |
| 106 | // DataLoader类的实现 |
| 107 | DataLoader::DataLoader() : pimpl_(std::make_unique<Impl>()) {} |
| 108 | DataLoader::~DataLoader() = default; |
| 109 | |
| 110 | MarketData DataLoader::loadMarketData(const std::string& symbol) { |
nothing calls this directly
no outgoing calls
no test coverage detected