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

28
mathmech/start_events.h Normal file
View File

@ -0,0 +1,28 @@
#ifndef START_EVENTS_H
#define START_EVENTS_H
#include <QWidget>
class MainWindow;
class ErrorWindow;
class Start_events : public QWidget
{
Q_OBJECT
public:
explicit Start_events(MainWindow *wid = 0);
void start_trj(QString mm_trj_path);
void start_statgen(QString mm_statgen_path);
signals:
public slots:
private slots:
private:
MainWindow *parent;
ErrorWindow *errorwin;
};
#endif /* START_EVENTS_H */