\brief Check whether the buffer is empty. This also treats a string of just whitespaces as empty.
| 74 | /// |
| 75 | /// This also treats a string of just whitespaces as empty. |
| 76 | bool empty() const { return mOutput.empty() or (std::string::npos == mOutput.find_first_not_of(' ', 0)); } |
| 77 | |
| 78 | /// \brief Returns a reference to the underlying string buffer. |
| 79 | std::string& GetString() { return mOutput; } |
nothing calls this directly
no outgoing calls
no test coverage detected