mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-15 00:37:13 +02:00
12 lines
205 B
C++
12 lines
205 B
C++
#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
|