You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
274 B
26 lines
274 B
6 months ago
|
#ifndef TT_H
|
||
|
#define TT_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class tt;
|
||
|
}
|
||
|
|
||
|
class tt : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit tt(QWidget *parent = nullptr);
|
||
|
~tt();
|
||
|
Ui::tt *ui;
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // TT_H
|