mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 14:51:41 +00:00
24 lines
330 B
C++
24 lines
330 B
C++
#ifndef ERRORWINDOW_H
|
|
#define ERRORWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class ErrorWindow;
|
|
}
|
|
|
|
class ErrorWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ErrorWindow(QWidget *parent = 0);
|
|
~ErrorWindow();
|
|
void set_message(int mess);
|
|
|
|
private:
|
|
Ui::ErrorWindow *ui;
|
|
};
|
|
|
|
#endif /* ERRORWINDOW_H */
|