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

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

#include "ugc/binary/serdes.hpp"

class Index;
struct FeatureID;

namespace ugc
{
struct UGC;

class Loader
{
public:
  Loader(Index const & index);
  void GetUGC(FeatureID const & featureId, UGC & ugc);

private:
    Index const & m_index;
    binary::UGCDeserializer m_d;
};
}  // namespace ugc