Added configuration interface

This commit is contained in:
arcan1s
2013-08-09 23:25:18 +04:00
parent abf7bce7df
commit 1c238fcc81
28 changed files with 987 additions and 3760 deletions

22
mathmech/aboutwindow.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef ABOUTWINDOW_H
#define ABOUTWINDOW_H
#include <QMainWindow>
namespace Ui {
class AboutWindow;
}
class AboutWindow : public QMainWindow
{
Q_OBJECT
public:
explicit AboutWindow(QWidget *parent = 0);
~AboutWindow();
private:
Ui::AboutWindow *ui;
};
#endif /* ABOUTWINDOW_H */