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