mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 13:33:27 +02:00
13 lines
264 B
C++
13 lines
264 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QFile>
|
|
#include <QUrl>
|
|
class PathUtils : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
PathUtils() = default;
|
|
~PathUtils() = default;
|
|
Q_INVOKABLE static QUrl resourcePath(const QString& source);
|
|
};
|