mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 09:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef COMPONENTS_FILES_QTCONVERSION_HPP
 | |
| #define COMPONENTS_FILES_QTCONVERSION_HPP
 | |
| 
 | |
| #include <QString>
 | |
| #include <filesystem>
 | |
| 
 | |
| namespace Files
 | |
| {
 | |
|     QString pathToQString(const std::filesystem::path& path);
 | |
| 
 | |
|     QString pathToQString(std::filesystem::path&& path);
 | |
| 
 | |
|     std::filesystem::path pathFromQString(QStringView path);
 | |
| 
 | |
|     std::filesystem::path pathFromQString(QString&& path);
 | |
| }
 | |
| 
 | |
| #endif // COMPONENTS_FILES_QTCONVERSION_HPP
 |