mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
412 B
C++
20 lines
412 B
C++
2 months ago
|
#ifndef COMPONENTS_VFS_QTCONVERSION_HPP
|
||
|
#define COMPONENTS_VFS_QTCONVERSION_HPP
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
#include "pathutil.hpp"
|
||
|
|
||
|
namespace VFS::Path
|
||
|
{
|
||
|
QString normalizedToQString(NormalizedView path);
|
||
|
|
||
|
QString normalizedToQString(Normalized&& path);
|
||
|
|
||
|
Normalized normalizedFromQString(QStringView path);
|
||
|
|
||
|
Normalized normalizedFromQString(QString&& path);
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTS_VFS_QTCONVERSION_HPP
|