1
0
forked from BRT/arc
arc/services/device_screener.h
trnsmkot b582f8bcc1 Integrate threading and Tesseract OCR functionality
Added a background worker using QThread for device screening and integrated Tesseract OCR for text recognition from images. Refactored project structure, updated CMakeLists for Tesseract support, and adjusted .gitignore for build files.
2025-04-14 13:59:19 +07:00

19 lines
324 B
C++

#pragma once
#include <QObject>
class DeviceScreener final : public QObject {
Q_OBJECT
public:
explicit DeviceScreener(QObject* parent = nullptr);
~DeviceScreener() override;
public slots:
void start();
void stop();
signals:
void finished();
private:
bool m_running = true;
};