0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00
obs-studio/obs/crash-report.hpp
jp9000 824c7b02c9 UI: Add crash report dialog
This crash report dialog is mostly just for the windows crash handling
code.  If a crash occurs, the user will be able to view the crash report
and post it on the forums or give it to a developer for debugging
purposes.
2015-01-03 02:37:21 -08:00

19 lines
255 B
C++

#pragma once
#include <QDialog>
class QPlainTextEdit;
class OBSCrashReport : public QDialog {
Q_OBJECT
QPlainTextEdit *textBox;
public:
OBSCrashReport(QWidget *parent, const char *text);
public slots:
void ExitClicked();
void CopyClicked();
};