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.
19 lines
367 B
C++
19 lines
367 B
C++
#pragma once
|
|
#include <QMainWindow>
|
|
#include <QVBoxLayout>
|
|
#include <QTimer>
|
|
#include "db/DeviceInfo.h"
|
|
#include "widget/FlowLayout.h"
|
|
|
|
class MainWindow final : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
void loadDevices() const;
|
|
|
|
private:
|
|
QWidget* central;
|
|
FlowLayout* flowLayout;
|
|
QTimer* timer;
|
|
};
|