Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
18 lines
275 B
C++
18 lines
275 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include <QTableWidget>
|
|
|
|
class BankListWindow final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BankListWindow(QWidget *parent = nullptr);
|
|
|
|
private:
|
|
QTableWidget *m_tableWidget;
|
|
|
|
void reloadTable();
|
|
void syncBanks();
|
|
};
|