mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-14 14:25:53 +00:00
Added mathmech
+ added files * bug fix in mm_trj
This commit is contained in:
23
mathmech/errorwindow.h
Normal file
23
mathmech/errorwindow.h
Normal file
@ -0,0 +1,23 @@
|
||||
#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(QString language, int mess);
|
||||
|
||||
private:
|
||||
Ui::ErrorWindow *ui;
|
||||
};
|
||||
|
||||
#endif /* ERRORWINDOW_H */
|
Reference in New Issue
Block a user