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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ugc/loader.hpp')
-rw-r--r--ugc/loader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ugc/loader.hpp b/ugc/loader.hpp
index 8a5fa3b65b..afcfc7e848 100644
--- a/ugc/loader.hpp
+++ b/ugc/loader.hpp
@@ -9,7 +9,7 @@
#include <memory>
#include <mutex>
-class DataSourceBase;
+class DataSource;
struct FeatureID;
namespace ugc
@@ -18,7 +18,7 @@ namespace ugc
class Loader
{
public:
- Loader(DataSourceBase const & dataSource);
+ Loader(DataSource const & dataSource);
UGC GetUGC(FeatureID const & featureId);
private:
@@ -30,7 +30,7 @@ private:
using EntryPtr = std::shared_ptr<Entry>;
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
std::map<MwmSet::MwmId, EntryPtr> m_deserializers;
std::mutex m_mutex;
};