mirror of
https://github.com/JasonYANG170/AIChatForPC.git
synced 2024-11-23 12:16:27 +00:00
26 lines
332 B
C++
26 lines
332 B
C++
#ifndef DIALOG_H
|
|
#define DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class Dialog;
|
|
}
|
|
|
|
class Dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Dialog(QWidget *parent = nullptr);
|
|
~Dialog();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::Dialog *ui;
|
|
};
|
|
|
|
#endif // DIALOG_H
|