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

booking_dataset.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dc21c1cc8efd05c232e0a6e5bee93d5fe207b0f (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
41
42
43
44
45
46
47
48
49
#pragma once

#include "generator/sponsored_dataset.hpp"
#include "generator/sponsored_object_base.hpp"

#include "geometry/latlon.hpp"

#include "base/newtype.hpp"

#include <limits>
#include <ostream>
#include <string>

namespace generator
{
struct BookingHotel : SponsoredObjectBase
{
  enum class Fields
  {
    Id = 0,
    Latitude = 1,
    Longtitude = 2,
    Name = 3,
    Address = 4,
    Stars = 5,
    PriceCategory = 6,
    RatingBooking = 7,
    RatingUsers = 8,
    DescUrl = 9,
    Type = 10,
    Translations = 11,
    Counter
  };

  explicit BookingHotel(std::string const & src);

  static constexpr size_t FieldIndex(Fields field) { return SponsoredObjectBase::FieldIndex(field); }
  static constexpr size_t FieldsCount() { return SponsoredObjectBase::FieldsCount<Fields>(); }

  uint32_t m_stars = 0;
  uint32_t m_priceCategory = 0;
  double m_ratingBooking = 0.0;
  double m_ratingUser = 0.0;
  uint32_t m_type = 0;
  std::string m_translations;
};

using BookingDataset = SponsoredDataset<BookingHotel>;
}  // namespace generator