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 'platform/platform.hpp')
-rw-r--r--platform/platform.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/platform/platform.hpp b/platform/platform.hpp
index 447886c671..f90f32a01e 100644
--- a/platform/platform.hpp
+++ b/platform/platform.hpp
@@ -61,13 +61,15 @@ public:
/// @return full path to file in user's writable directory
string WritablePathForFile(string const & file) const { return WritableDir() + file; }
/// @return full path to indexes directory for country file. Creates directory if it's not exists.
- string WritablePathForFileIndexes(string const & country_name) const;
+ string WritablePathForCountryIndexes(string const & country_name) const;
/// @return resource dir (on some platforms it's differ from Writable dir)
string ResourcesDir() const { return m_resourcesDir; }
/// Creates directory at filesystem
- void MkDir(string const & directory_name) const;
+ void MkDir(string const & dirName) const;
+
+ /// @TODO create join method for string concatenation
/// @return path for directory with temporary files with slash at the end
string TmpDir() const { return m_tmpDir; }