| 18 | #include <QtCore/QLocale> |
| 19 | |
| 20 | std::unique_ptr<ModelReader> Platform::GetReader(std::string const & file, std::string searchScope) const |
| 21 | { |
| 22 | return std::make_unique<FileReader>(ReadPathForFile(file, std::move(searchScope)), READER_CHUNK_LOG_SIZE, |
| 23 | READER_CHUNK_LOG_COUNT); |
| 24 | } |
| 25 | |
| 26 | bool Platform::GetFileSizeByName(std::string const & fileName, uint64_t & size) const |
| 27 | { |
no outgoing calls