initial import
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
#include "qtservice.h"
|
||||
|
||||
#include "OurOCREngine.h"
|
||||
|
||||
class OCREngineService :
|
||||
public QtService<QCoreApplication>
|
||||
{
|
||||
public:
|
||||
OCREngineService(int argc, char **argv);
|
||||
~OCREngineService(void);
|
||||
|
||||
protected:
|
||||
void start();
|
||||
// void pause();
|
||||
void stop();
|
||||
|
||||
private:
|
||||
OurOCREngine m_ocrEngine;
|
||||
QFuture<void> m_future;
|
||||
};
|
||||
Reference in New Issue
Block a user