mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-12-26 15:01:25 +01:00
13 lines
241 B
C++
13 lines
241 B
C++
// SPDX-License-Identifier: MPL-2.0
|
|
#pragma once
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
namespace aare {
|
|
|
|
/**
|
|
* @brief Get the error message from an ifstream object
|
|
*/
|
|
std::string ifstream_error_msg(std::ifstream &ifs);
|
|
|
|
} // namespace aare
|