1
0
forked from BRT/arc
arc/views/DeviceWidget.h
slava 4d9889db46 Refactor UI and database logic for device management
Replaced `MyWindow` with `MainWindow` featuring dynamic device widgets. Introduced `DeviceInfo`, `DeviceDAO`, and improved database interaction. Added flow layout and refactored image handling for better performance.
2025-04-18 16:39:13 +07:00

11 lines
206 B
C++

#pragma once
#include <QWidget>
#include "DeviceInfo.h"
class DeviceWidget final : public QWidget {
Q_OBJECT
public:
explicit DeviceWidget(const DeviceInfo& device, QWidget* parent = nullptr);
};