mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
23 lines
343 B
C++
23 lines
343 B
C++
//
|
|
// AppleCrashReporter.h
|
|
// RobloxStudio
|
|
//
|
|
|
|
#pragma once
|
|
|
|
class AppleCrashReporter
|
|
{
|
|
|
|
public:
|
|
static void check();
|
|
|
|
|
|
private:
|
|
static void getReports(QStringList& fileList);
|
|
static void submitFile(QString fileName);
|
|
static void uploadAndDeletFileAsync(std::string url, std::string file);
|
|
|
|
private:
|
|
static const int maxReport;
|
|
|
|
}; |