meshgen

diff src/mainwindow.h @ 0:795217e82f3d

starting the mesh generation GUI project
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 30 Aug 2015 05:54:32 +0300
parents
children 7dac9d1bcae4
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/mainwindow.h	Sun Aug 30 05:54:32 2015 +0300
     1.3 @@ -0,0 +1,22 @@
     1.4 +#ifndef MAINWINDOW_H
     1.5 +#define MAINWINDOW_H
     1.6 +
     1.7 +#include <QMainWindow>
     1.8 +
     1.9 +namespace Ui {
    1.10 +class MainWindow;
    1.11 +}
    1.12 +
    1.13 +class MainWindow : public QMainWindow
    1.14 +{
    1.15 +	Q_OBJECT
    1.16 +
    1.17 +public:
    1.18 +	explicit MainWindow(QWidget *parent = 0);
    1.19 +	~MainWindow();
    1.20 +
    1.21 +private:
    1.22 +	Ui::MainWindow *ui;
    1.23 +};
    1.24 +
    1.25 +#endif // MAINWINDOW_H