mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 08:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef COMPONENTS_FILES_PATH_HPP
 | |
| #define COMPONENTS_FILES_PATH_HPP
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| namespace Files
 | |
| {
 | |
|     enum PathTypeEnum
 | |
|     {
 | |
|         Path_ConfigUser,
 | |
|         Path_ConfigGlobal
 | |
|     };
 | |
| 
 | |
|     std::string getPath (PathTypeEnum parType, const std::string parApp, const std::string parFile);
 | |
| }
 | |
| 
 | |
| #endif
 |