You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/utils/tails.h

27 lines
576 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef TAILSOS_H
#define TAILSOS_H
#include <QApplication>
class TailsOS
{
public:
static bool detect();
static bool detectDataPersistence();
static bool detectDotPersistence();
static QString version();
static void showDataPersistenceDisabledWarning();
static void persistXdgMime(const QString& filePath, const QString& data);
static bool usePersistence;
static bool rememberChoice;
static const QString tailsPathData;
};
#endif // TAILSOS_H