mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
19 lines
434 B
C++
19 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
|