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-21 16:26:04 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:26:24 +0300
commit485c280e20b0ab5459ab6af48574feab9940483d (patch)
tree16425028a35c33387df4b44e2baadfa0938d895d /coding/file_container.hpp
parent6fb963c435eeaf1bdc56fd12dca348d79c18cd04 (diff)
Add read write functions for some std containers.
Diffstat (limited to 'coding/file_container.hpp')
-rw-r--r--coding/file_container.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/coding/file_container.hpp b/coding/file_container.hpp
index 8b8ec54465..d77e8587a4 100644
--- a/coding/file_container.hpp
+++ b/coding/file_container.hpp
@@ -7,8 +7,7 @@
class FilesContainerBase
{
-protected:
-
+public:
typedef string Tag;
struct Info
@@ -21,6 +20,7 @@ protected:
Info(Tag const & tag, uint64_t offset) : m_tag(tag), m_offset(offset) {}
};
+protected:
struct LessInfo
{
bool operator() (Info const & t1, Info const & t2) const