rpcsx/rpcs3/rpcs3qt/fatal_error_dialog.h
Nekotekina b7bf316c1a Don't randomly include "stdafx.h"
It's file for precompiled headers.
Include what is used, don't rely on transitive includes.
2020-12-22 14:32:30 +03:00

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);
};