mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 09:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_FILES_OPENFILE_H
 | 
						|
#define OPENMW_COMPONENTS_FILES_OPENFILE_H
 | 
						|
 | 
						|
#include <iosfwd>
 | 
						|
#include <memory>
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace Files
 | 
						|
{
 | 
						|
    std::unique_ptr<std::ifstream> openBinaryInputFileStream(const std::string& path);
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |