mirror of
https://github.com/brmlab/microview.git
synced 2025-06-08 11:34:01 +02:00
init
This commit is contained in:
commit
f6403176a7
9 changed files with 302 additions and 0 deletions
24
software/mainwindow.h
Normal file
24
software/mainwindow.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#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 slots:
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
Loading…
Add table
Add a link
Reference in a new issue