mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 23:56:39 +00:00
20 lines
278 B
C
20 lines
278 B
C
|
#ifndef TESTSUTILS_H
|
||
|
#define TESTSUTILS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QUrl>
|
||
|
#include <QQuickWindow>
|
||
|
|
||
|
class TestsUtils : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
TestsUtils() = default;
|
||
|
~TestsUtils() override = default;
|
||
|
|
||
|
Q_INVOKABLE QString getTempPath();
|
||
|
};
|
||
|
|
||
|
#endif
|