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:
authorgorshenin <y.gorshenin@corp.mail.ru>2015-07-01 16:48:58 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:53:27 +0300
commita7bcdb5ae8b8e75c1a3806b00b19f3b80c72c5b3 (patch)
treee24caedef110b579fcedc15d29c62cc43e3f6d9c /platform/platform.hpp
parente0470160313b3ed0bc396ffec72b16fded6b8520 (diff)
Revert "[storage, framework, index] Storage redesign. Plain strings are replaced to CountryFile and LocalCountryFile."
Diffstat (limited to 'platform/platform.hpp')
-rw-r--r--platform/platform.hpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/platform/platform.hpp b/platform/platform.hpp
index 7effb78d90..91f86740d7 100644
--- a/platform/platform.hpp
+++ b/platform/platform.hpp
@@ -1,7 +1,5 @@
#pragma once
-#include "platform/country_defines.hpp"
-
#include "coding/reader.hpp"
#include "base/exception.hpp"
@@ -14,14 +12,10 @@
#include "defines.hpp"
+
DECLARE_EXCEPTION(FileAbsentException, RootException);
DECLARE_EXCEPTION(NotImplementedException, RootException);
-namespace platform
-{
-class LocalCountryFile;
-}
-
class Platform
{
public:
@@ -115,9 +109,6 @@ public:
/// @return full path to file in the settings directory
string SettingsPathForFile(string const & file) const { return SettingsDir() + file; }
- ModelReader * GetCountryReader(platform::LocalCountryFile const & file,
- TMapOptions options) const;
-
/// @return reader for file decriptor.
/// @throws FileAbsentException
/// @param[in] file name or full path which we want to read, don't forget to free memory or wrap it to ReaderPtr