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
path: root/coding
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2017-07-17 18:12:34 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2017-07-17 18:14:43 +0300
commit42a68d51ae3e824ab5e8bb73672e2aac660bd2dc (patch)
treeff4877dbc08ff6aaa3be6379de9d5073afeb60ce /coding
parent3e822f599dfac2f11d55f45f6582e1b3fa6283c3 (diff)
Added default ctor for CSVReader.
Diffstat (limited to 'coding')
-rw-r--r--coding/csv_file_reader.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/coding/csv_file_reader.hpp b/coding/csv_file_reader.hpp
index f225942ad5..c6c80cd8e7 100644
--- a/coding/csv_file_reader.hpp
+++ b/coding/csv_file_reader.hpp
@@ -16,6 +16,8 @@ public:
char m_delimiter = ',';
};
+ CSVReader() = default;
+
using LineByLineCallback = std::function<void(std::vector<std::string> const & line)>;
using FullFileCallback = std::function<void(std::vector<std::vector<std::string>> const & file)>;