mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-19 09:45:21 -04:00
Add version information to zint.h and increment release version
Relates to #51
This commit is contained in:
parent
6115a3f8b6
commit
e7858dfe98
11 changed files with 109 additions and 6 deletions
22
frontend_qt5/ZintUI/mainwindow.h
Normal file
22
frontend_qt5/ZintUI/mainwindow.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
Loading…
Add table
Add a link
Reference in a new issue