18 lines
239 B
C
18 lines
239 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QMainWindow>
|
||
|
|
#include "ui_QtWindComputer.h"
|
||
|
|
|
||
|
|
class QtWindComputer : public QMainWindow
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
QtWindComputer(QWidget *parent = nullptr);
|
||
|
|
~QtWindComputer();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::QtWindComputerClass ui;
|
||
|
|
};
|
||
|
|
|