mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-25 20:35:24 +02:00
24 lines
453 B
C++
24 lines
453 B
C++
#ifndef TAILSOS_H
|
|
#define TAILSOS_H
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
class TailsOS
|
|
{
|
|
public:
|
|
TailsOS();
|
|
static bool detect();
|
|
static bool detectDataPersistence();
|
|
static bool detectDotPersistence();
|
|
|
|
static void showDataPersistenceDisabledWarning();
|
|
static void askPersistence();
|
|
static void persistXdgMime(QString filePath, QString data);
|
|
|
|
static bool usePersistence;
|
|
static QString tailsPathData;
|
|
};
|
|
|
|
#endif // TAILSOS_H
|