Added mathmech

+ added files
* bug fix in mm_trj
This commit is contained in:
arcan1s
2013-08-07 23:30:56 +04:00
parent 9b4390f452
commit 3e5dc1ab07
28 changed files with 8129 additions and 1 deletions

23
mathmech/errorwindow.h Normal file
View 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 */