mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 08:47:16 +02:00
38 lines
804 B
C++
38 lines
804 B
C++
//
|
|
// CrashHandler.h
|
|
// interface/src
|
|
//
|
|
// Created by David Rowe on 24 Aug 2015.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_CrashHandler_h
|
|
#define hifi_CrashHandler_h
|
|
|
|
#include <QString>
|
|
|
|
class CrashHandler {
|
|
|
|
public:
|
|
static void checkForAndHandleCrash();
|
|
|
|
static void writeRunningMarkerFiler();
|
|
static void deleteRunningMarkerFile();
|
|
|
|
private:
|
|
enum Action {
|
|
DELETE_INTERFACE_INI,
|
|
RETAIN_LOGIN_AND_AVATAR_INFO,
|
|
DO_NOTHING
|
|
};
|
|
|
|
static Action promptUserForAction();
|
|
static void handleCrash(Action action);
|
|
|
|
static const QString runningMarkerFilePath();
|
|
};
|
|
|
|
#endif // hifi_CrashHandler_h
|