1
0
forked from BRT/arc
arc/services/device_screener.h
slava 504c6629ab 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;
};