mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-14 07:33:25 +01:00
16 lines
212 B
C++
16 lines
212 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = 0);
|
|
~MainWindow();
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|