QtCurvesCpp/mainwindow.h

24 lines
327 B
C
Raw Normal View History

2017-08-28 08:17:35 +02:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = root);
~MainWindow();
private:
constexpr static QWidget* root = 0;
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H