mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 14:51:41 +00:00
28 lines
393 B
C++
28 lines
393 B
C++
#ifndef UPDATE_FIELDS_H
|
|
#define UPDATE_FIELDS_H
|
|
|
|
#include <QWidget>
|
|
|
|
class MainWindow;
|
|
|
|
class Update_fields : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Update_fields(MainWindow *wid = 0);
|
|
void setup_def_statgen();
|
|
void setup_def_envir();
|
|
void setup_def_radf();
|
|
void setup_def_pdb();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
MainWindow *parent;
|
|
|
|
};
|
|
|
|
#endif /* UPDATE_FIELDS_H */
|