Files
aare/include/aare/utils/ifstream_helpers.hpp
Erik Fröjdh 200ae91622 also hpp
2025-11-21 10:14:14 +01:00

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