mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 08:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			470 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			470 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "openfile.hpp"
 | 
						|
 | 
						|
#include <cstring>
 | 
						|
#include <fstream>
 | 
						|
 | 
						|
namespace Files
 | 
						|
{
 | 
						|
    std::unique_ptr<std::ifstream> openBinaryInputFileStream(const std::string& path)
 | 
						|
    {
 | 
						|
        auto stream = std::make_unique<std::ifstream>(path, std::ios::binary);
 | 
						|
        if (!stream->is_open())
 | 
						|
            throw std::runtime_error("Failed to open '" + path + "' for reading: " + std::strerror(errno));
 | 
						|
        stream->exceptions(std::ios::badbit);
 | 
						|
        return stream;
 | 
						|
    }
 | 
						|
}
 |