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

intersection_result.hpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9285cbe5cd7b3739330a1f2a8a53f3736ed74c98 (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
#pragma once

#include "search/search_model.hpp"

#include "std/cstdint.hpp"
#include "std/string.hpp"

namespace search
{
// This class holds higher-level features for an intersection result,
// i.e. BUILDING and STREET for POI or STREET for BUILDING.
struct IntersectionResult
{
  static uint32_t const kInvalidId;

  IntersectionResult();

  void Set(SearchModel::SearchType type, uint32_t id);

  // Returns the first valid feature among the [POI, BUILDING,
  // STREET].
  uint32_t InnermostResult() const;

  // Returns true when at least one valid feature exists.
  inline bool IsValid() const { return InnermostResult() != kInvalidId; }

  // Clears all fields to an invalid state.
  void Clear();

  uint32_t m_poi;
  uint32_t m_building;
  uint32_t m_street;
};

string DebugPrint(IntersectionResult const & result);

}  // namespace search