1
mirror of https://github.com/monero-project/monero-gui synced 2024-08-07 13:04:14 +02:00
monero-gui/oshelper.h
2016-06-10 16:41:13 +03:00

23 lines
386 B
C++

#ifndef OSHELPER_H
#define OSHELPER_H
#include <QObject>
/**
* @brief The OSHelper class - exports to QML some OS-related functions
*/
class OSHelper : public QObject
{
Q_OBJECT
public:
explicit OSHelper(QObject *parent = 0);
Q_INVOKABLE QString temporaryFilename() const;
Q_INVOKABLE QString temporaryPath() const;
signals:
public slots:
};
#endif // OSHELPER_H