Welcome to mirror list, hosted at ThFree Co, Russian Federation.

taxi_places_loader.hpp « partners_api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10ed83c8f674142d831bc1f638620cd61e512e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include "partners_api/taxi_places.hpp"
#include "partners_api/taxi_provider.hpp"

#include "coding/file_reader.hpp"

#include "base/assert.hpp"
#include "base/logging.hpp"

#include <string>

namespace taxi
{
namespace places
{
class Loader
{
public:
  static SupportedPlaces LoadFor(Provider::Type const type);

private:
  static std::string GetFileNameByProvider(Provider::Type const type);
};
}  // namespace places
}  // namespace taxi