1
mirror of https://github.com/monero-project/monero-gui synced 2024-08-08 12:35:44 +02:00
monero-gui/oshelper.cpp
2016-06-10 16:41:13 +03:00

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