mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-04 14:54:36 +01:00
It's file for precompiled headers. Include what is used, don't rely on transitive includes.
14 lines
173 B
C++
14 lines
173 B
C++
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <string>
|
|
|
|
class fatal_error_dialog : public QMessageBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
fatal_error_dialog(const std::string& text);
|
|
};
|