* @brief Checks if the file can be read. * * @return true if the file can be read, false otherwise. */
| 201 | |
| 202 | /** |
| 203 | * @brief Checks if the file can be read. |
| 204 | * |
| 205 | * @return true if the file can be read, false otherwise. |
| 206 | */ |
| 207 | inline bool canRead() const |
| 208 | { |
| 209 | return access(_filePath.c_str(), R_OK) != -1; |
nothing calls this directly
no outgoing calls
no test coverage detected