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/api.hpp')
-rw-r--r--ugc/api.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ugc/api.hpp b/ugc/api.hpp
index 40198c076c..b531be5943 100644
--- a/ugc/api.hpp
+++ b/ugc/api.hpp
@@ -10,7 +10,7 @@
#include <functional>
-class DataSourceBase;
+class DataSource;
struct FeatureID;
namespace ugc
@@ -24,7 +24,7 @@ public:
using OnResultCallback = platform::SafeCallback<void(Storage::SettingResult const result)>;
using NumberOfUnsynchronizedCallback = std::function<void(size_t number)>;
- Api(DataSourceBase const & dataSource, NumberOfUnsynchronizedCallback const & callback);
+ Api(DataSource const & dataSource, NumberOfUnsynchronizedCallback const & callback);
void GetUGC(FeatureID const & id, UGCCallbackUnsafe const & callback);
void SetUGCUpdate(FeatureID const & id, UGCUpdate const & ugc,