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

country_decl.hpp « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3bb3972d9f99c6b1a53f88d0afd03b7528c7506 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#pragma once

#include "storage/index.hpp"

#include "geometry/rect2d.hpp"

#include "std/string.hpp"

namespace storage
{
  struct CountryDef
  {
    /// File name without extension (equal to english name - used in search for region).
    TCountryId m_countryId;
    m2::RectD m_rect;

    CountryDef() {}
    CountryDef(TCountryId const & countryId, m2::RectD const & rect)
      : m_countryId(countryId), m_rect(rect)
    {
    }
  };

  struct CountryInfo
  {
    CountryInfo() = default;
    CountryInfo(string const & id) : m_name(id) {}

    /// Name (in native language) of country or region.
    /// (if empty - equals to file name of country - no additional memory)
    string m_name;

    bool IsNotEmpty() const { return !m_name.empty(); }

    // @TODO(bykoianko) Twine will be used intead of this function.
    // So id (fName) will be converted to a local name.
    static void FileName2FullName(string & fName);
    static void FullName2GroupAndMap(string const & fName, string & group, string & map);
  };
}