mirror of
https://github.com/overte-org/overte.git
synced 2025-07-30 06:30:22 +02:00
23 lines
481 B
C++
23 lines
481 B
C++
//
|
|
// CrashAnnotations.h
|
|
// libraries/shared/src
|
|
//
|
|
// Created by Clement Brisset on 9/26/19.
|
|
// Copyright 2019 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_CrashAnnotations_h
|
|
#define hifi_CrashAnnotations_h
|
|
|
|
namespace crash {
|
|
namespace annotations {
|
|
|
|
void setShutdownState(bool isShuttingDown);
|
|
|
|
};
|
|
};
|
|
|
|
#endif // hifi_CrashAnnotations_h
|