mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 15:56:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef COMPONENTS_FILES_FILEOPS_HPP
 | 
						|
#define COMPONENTS_FILES_FILEOPS_HPP
 | 
						|
 | 
						|
namespace Files
 | 
						|
{
 | 
						|
 | 
						|
///\brief Check if a given path is an existing file (not a directory)
 | 
						|
///\param [in] name - filename
 | 
						|
bool isFile(const char *name);
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif /* COMPONENTS_FILES_FILEOPS_HPP */
 |