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.
11 lines
182 B
C++
11 lines
182 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class TransactionWindow final : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TransactionWindow(int accountId, QWidget *parent = nullptr);
|
|
};
|