overte/launchers/qt/src/PathUtils.h
2019-09-27 16:59:04 -07:00

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);
};