Updated include paths for consistent structure under the `db` directory. Added `AccountInfoScreener` for parsing card data using Tesseract OCR and enhanced related models. Removed unused code and simplified main workflow.
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);
|
|
};
|