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>2010-12-30 00:47:34 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:08:53 +0300
commitb506aacbb6eb10a160f0848ad5393c7b8083df47 (patch)
treed0c3b5185ebaaefd9ba369e4a42c7304022e90b1 /coding/file_writer.hpp
parente04540f8b6ee9c139a0e8634a3d44c8838488a2e (diff)
Fix compilation errors (1st try).
Diffstat (limited to 'coding/file_writer.hpp')
-rw-r--r--coding/file_writer.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/coding/file_writer.hpp b/coding/file_writer.hpp
index ee0fc129f1..ef155d4e3a 100644
--- a/coding/file_writer.hpp
+++ b/coding/file_writer.hpp
@@ -22,6 +22,8 @@ public:
// Seek should not be called, if file is opened for append.
OP_APPEND = 3};
+ FileWriter(FileWriter & rhs);
+
explicit FileWriter(string const & fileName, Op operation = OP_WRITE_TRUNCATE);
~FileWriter();