mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
185 B
C++
14 lines
185 B
C++
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <string_view>
|
|
|
|
class fatal_error_dialog : public QMessageBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit fatal_error_dialog(std::string_view text);
|
|
};
|