mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
27 lines
575 B
C
27 lines
575 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef TAILSOS_H
|
||
|
#define TAILSOS_H
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
|
||
|
class TailsOS
|
||
|
{
|
||
|
public:
|
||
|
static bool detect();
|
||
|
static bool detectDataPersistence();
|
||
|
static bool detectDotPersistence();
|
||
|
|
||
|
static void showDataPersistenceDisabledWarning();
|
||
|
static void askPersistence();
|
||
|
static void persistXdgMime(const QString& filePath, const QString& data);
|
||
|
|
||
|
static bool usePersistence;
|
||
|
static bool rememberChoice;
|
||
|
static const QString tailsPathData;
|
||
|
};
|
||
|
|
||
|
#endif // TAILSOS_H
|