| 36 | explicit operator std::string() const { return data; } |
| 37 | |
| 38 | void Load(const std::string& fileName) { Load(fileName.c_str()); } |
| 39 | void Load(const char* fileName) { |
| 40 | data = ::LoadFileText(fileName); |
| 41 | length = ::TextLength(data); |
nothing calls this directly
no test coverage detected