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
374 B
26 lines
374 B
|
3 years ago
|
#ifndef ADDTRADEDIALOG_H
|
||
|
|
#define ADDTRADEDIALOG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class AddTradeDialog;
|
||
|
|
}
|
||
|
|
|
||
|
|
class AddTradeDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit AddTradeDialog(QWidget *parent = nullptr);
|
||
|
|
~AddTradeDialog();
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void on_pushButton_OK_clicked();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::AddTradeDialog *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ADDTRADEDIALOG_H
|