Files
comaps/libs/indexer/utils.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

14 lines
335 B
C++

#pragma once
#include "indexer/data_source.hpp"
#include "indexer/mwm_set.hpp"
#include <memory>
#include <vector>
namespace indexer
{
MwmSet::MwmHandle FindWorld(DataSource const & dataSource, std::vector<std::shared_ptr<MwmInfo>> const & infos);
MwmSet::MwmHandle FindWorld(DataSource const & dataSource);
} // namespace indexer