mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:16:33 +00:00
15 lines
247 B
C++
15 lines
247 B
C++
#include "aiengineinference.h"
|
|
|
|
|
|
AiEngineInference::AiEngineInference(QString modelPath, QObject *parent)
|
|
: QObject{parent},
|
|
mModelPath(modelPath),
|
|
mActive(false)
|
|
{}
|
|
|
|
|
|
bool AiEngineInference::isActive(void)
|
|
{
|
|
return mActive;
|
|
}
|