17 lines
296 B
C++
17 lines
296 B
C++
|
#include "PathUrlHelper.hxx"
|
||
|
|
||
|
PathUrlHelper::PathUrlHelper(QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
QString PathUrlHelper::urlToLocalFilePath(QUrl url) const
|
||
|
{
|
||
|
return url.toLocalFile();
|
||
|
}
|
||
|
|
||
|
QUrl PathUrlHelper::urlFromLocalFilePath(QString path) const
|
||
|
{
|
||
|
return QUrl::fromLocalFile(path);
|
||
|
}
|