Edited files

This commit is contained in:
arcan1s
2013-08-08 06:40:06 +04:00
parent 8a37a3cbab
commit 020d912704
10 changed files with 332 additions and 53 deletions

27
mathmech/update_fields.h Normal file
View File

@ -0,0 +1,27 @@
#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 */