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:
authorAlex Zolotarev <deathbaba@gmail.com>2012-01-04 15:12:44 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:31:19 +0300
commit0e6cfcbd3540ba64781eaac4f90ec2a4c2cc2eb6 (patch)
tree0567543d890fa0f8748d3ec96f0be9c97bc43baa /coding/mmap_reader.hpp
parentf8be0cd10f461ed79b439c2683b653941a411b1e (diff)
[android] Switched from FileReader to MmapReader
Diffstat (limited to 'coding/mmap_reader.hpp')
-rw-r--r--coding/mmap_reader.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/coding/mmap_reader.hpp b/coding/mmap_reader.hpp
index 55ff0b0ba4..c1cf2a0bdb 100644
--- a/coding/mmap_reader.hpp
+++ b/coding/mmap_reader.hpp
@@ -25,4 +25,8 @@ public:
/// Direct file/memory access
uint8_t * Data() const;
+
+protected:
+ // Used in special derived readers.
+ void SetOffsetAndSize(uint64_t offset, uint64_t size);
};