Removed redundant "numbers" field from Account model and database queries to simplify account structure. Introduced a TutorialWindow class for displaying application tutorials, integrated into the main window, and updated file paths accordingly. Improved string handling and logic in Payment routines and enhanced overall UI structure.
11 lines
209 B
C++
11 lines
209 B
C++
#pragma once
|
|
#include <QWidget>
|
|
#include "db/DeviceInfo.h"
|
|
|
|
class DeviceWidget final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DeviceWidget(const DeviceInfo& device, QWidget* parent = nullptr);
|
|
};
|