--------------------------------- FileUtil::AsText Converts a byte vector to an std::string
| 31 | // Converts a byte vector to an std::string |
| 32 | // |
| 33 | std::string FileUtil::AsText(const std::vector<uint8> &data) |
| 34 | { |
| 35 | return std::string(data.begin(), data.end()); |
| 36 | } |
| 37 | |
| 38 | //--------------------------------- |
| 39 | // FileUtil::AsText |