Deleted `CommonBirbankScript` and its associated derived classes (`GetLastDaysHistoryBirbankScript`, `LoginAndCheckAccountsBirbankScript`, `PayByCardBirbankScript`). Removed dependencies on these scripts, including XML parsing, account handling, and transaction workflows related to the Birbank app.
18 lines
342 B
C++
18 lines
342 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include <QTableWidget>
|
|
|
|
class DeviceSettingsWindow final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeviceSettingsWindow(QWidget *parent, const QString &deviceId, const QString &deviceName);
|
|
|
|
private:
|
|
QString m_deviceId;
|
|
QString m_deviceName;
|
|
|
|
void reloadContent(QTableWidget *tableWidget);
|
|
};
|