This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/indexer/utils.hpp

14 lines
363 B
C++

#pragma once
#include "indexer/mwm_set.hpp"
#include "indexer/data_source.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