mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-15 22:59:59 +00:00
Added mathmech
+ added files * bug fix in mm_trj
This commit is contained in:
28
mathmech/start_events.h
Normal file
28
mathmech/start_events.h
Normal 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 */
|
Reference in New Issue
Block a user