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/zip_reader.hpp
parentf8be0cd10f461ed79b439c2683b653941a411b1e (diff)
[android] Switched from FileReader to MmapReader
Diffstat (limited to 'coding/zip_reader.hpp')
-rw-r--r--coding/zip_reader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/coding/zip_reader.hpp b/coding/zip_reader.hpp
index 7128b587dd..129ae14234 100644
--- a/coding/zip_reader.hpp
+++ b/coding/zip_reader.hpp
@@ -1,12 +1,12 @@
#pragma once
-#include "file_reader.hpp"
+#include "mmap_reader.hpp"
#include "../base/exception.hpp"
-class ZipFileReader : public FileReader
+class ZipFileReader : public MmapReader
{
- typedef FileReader base_type;
+ typedef MmapReader base_type;
public:
DECLARE_EXCEPTION(OpenZipException, OpenException);