mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 14:26:38 +00:00 
			
		
		
		
	Moving classes from components/misc into Misc namespace. Note: Misc namespace introduced conflict with ESM::Misc and MWClass::Misc classes, so both of them are renamed to ESM::Miscellaneous and MWClass::Miscellaneous. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef MISC_FILEOPS_H
 | |
| #define MISC_FILEOPS_H
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| namespace Misc
 | |
| {
 | |
| 
 | |
| /// Check if a given path is an existing file (not a directory)
 | |
| bool isFile(const char *name);
 | |
| 
 | |
| #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
 | |
| std::string macBundlePath();
 | |
| #endif
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |