1
0
forked from BRT/arc
arc/views/bank/BankListWindow.h
slava afbf3a3afb Add Ozon pay_to_new_number and pay_to_old_number XML assets
Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
2026-03-01 09:30:59 +07:00

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();
};