EVOLUTION-MANAGER
Edit File: read.h
#ifndef SOURCETOOLS_READ_READ_H #define SOURCETOOLS_READ_READ_H #include <vector> #include <string> #include <sourcetools/read/MemoryMappedReader.h> namespace sourcetools { inline bool read(const std::string& absolutePath, std::string* pContent) { return detail::MemoryMappedReader::read(absolutePath.c_str(), pContent); } inline bool read_lines(const std::string& absolutePath, std::vector<std::string>* pLines) { return detail::MemoryMappedReader::read_lines(absolutePath.c_str(), pLines); } } // namespace sourcetools #endif /* SOURCETOOLS_READ_READ_H */