mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
fd50e6f9a3
the destination at the final step
24 lines
391 B
C++
24 lines
391 B
C++
#include "oshelper.h"
|
|
#include <QTemporaryFile>
|
|
#include <QDir>
|
|
|
|
OSHelper::OSHelper(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
QString OSHelper::temporaryFilename() const
|
|
{
|
|
QString tempFileName;
|
|
{
|
|
QTemporaryFile f;
|
|
f.open();
|
|
tempFileName = f.fileName();
|
|
}
|
|
return tempFileName;
|
|
}
|
|
|
|
QString OSHelper::temporaryPath() const
|
|
{
|
|
return QDir::tempPath();
|
|
}
|