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:
authorvng <viktor.govako@gmail.com>2011-10-25 17:57:03 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:26:43 +0300
commit110568a93d27c9685e765d5ac789ff263cd1a083 (patch)
tree6b7796fe045a2a1888fc2c534d460b122c820cd0 /coding/file_container.hpp
parent5f8f2936716f0189947ebb0018c9818d30ff8345 (diff)
Add some needed selectors.
Diffstat (limited to 'coding/file_container.hpp')
-rw-r--r--coding/file_container.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/coding/file_container.hpp b/coding/file_container.hpp
index d77e8587a4..64b2865f15 100644
--- a/coding/file_container.hpp
+++ b/coding/file_container.hpp
@@ -98,7 +98,8 @@ public:
f(m_info[i].m_tag);
}
- inline uint64_t GetSize() const { return m_source.Size(); }
+ inline uint64_t GetFileSize() const { return m_source.Size(); }
+ inline string GetFileName() const { return m_source.GetName(); }
private:
ReaderT m_source;