1
0
forked from BRT/arc
arc/views/TransactionWindow.h
trnsmkot f8fa93a6d9 Implement AccountWindow and TransactionWindow for account management
Added AccountWindow to display account tables linked to devices and TransactionWindow for viewing account details. Enhanced DeviceDAO and AccountDAO to support additional filtering and data retrieval functionalities.
2025-04-22 12:22:56 +07:00

11 lines
182 B
C++

#pragma once
#include <QDialog>
class TransactionWindow final : public QDialog {
Q_OBJECT
public:
explicit TransactionWindow(int accountId, QWidget *parent = nullptr);
};