Codey
 
Loading...
Searching...
No Matches
withdraw.h
Go to the documentation of this file.
1#ifndef WITHDRAW_H
2#define WITHDRAW_H
3
4#include <QDialog>
5
6namespace Ui {
7class Withdraw;
8}
9
10class Withdraw : public QDialog
11{
12 Q_OBJECT
13
14public:
15 explicit Withdraw(QWidget *parent = nullptr);
16 ~Withdraw();
17 double getWithdrawAmount() const;
19
20private:
21 Ui::Withdraw *ui;
22};
23
24#endif
~Withdraw()
Definition withdraw.cpp:18
void onWithdrawButtonClicked()
Definition withdraw.cpp:28
double getWithdrawAmount() const
Definition withdraw.cpp:23
Withdraw(QWidget *parent=nullptr)
Definition withdraw.cpp:9
Definition authwindow.h:7