mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-04-10 06:11:54 +10:00
14 lines
242 B
C++
14 lines
242 B
C++
#pragma once
|
|
|
|
#include <qtclasshelpermacros.h>
|
|
|
|
#include "../core/instanceinfo.hpp"
|
|
namespace qs::crash {
|
|
|
|
class CrashHandler {
|
|
public:
|
|
static void init();
|
|
static void setRelaunchInfo(const RelaunchInfo& info);
|
|
};
|
|
|
|
} // namespace qs::crash
|