Logo
ApraPipes 1.0
Loading...
Searching...
No Matches
SimpleControlModule.h
1#pragma once
2#include "AbsControlModule.h"
3
8
10{
11public:
15
19 std::string printStatus();
20 void handleError(const APErrorObject& error) override;
21 void handleHealthCallback(const APHealthObject& healthObj) override;
22protected:
23 void sendEOS();
24 void sendEOS(frame_sp& frame);
25 void sendEOPFrame();
26private:
27 class Detail;
28 boost::shared_ptr<Detail> mDetail;
29};
Definition APErrorObject.h:4
Definition APHealthObject.h:5
Definition AbsControlModule.h:8
Definition AbsControlModule.h:13
Definition FacialLandmarksCV.cpp:17
Definition SimpleControlModule.h:4
SimpleControlModuleProps()
Definition SimpleControlModule.h:6
Definition SimpleControlModule.h:10
boost::shared_ptr< Detail > mDetail
Definition SimpleControlModule.h:28
void sendEOPFrame()
Definition SimpleControlModule.cpp:13
void sendEOS()
Definition SimpleControlModule.cpp:3
SimpleControlModule(SimpleControlModuleProps _props)
Definition SimpleControlModule.h:12
~SimpleControlModule()
Definition SimpleControlModule.h:16
void handleError(const APErrorObject &error) override
Definition SimpleControlModule.cpp:24
void handleHealthCallback(const APHealthObject &healthObj) override
Definition SimpleControlModule.cpp:31
std::string printStatus()
Definition SimpleControlModule.cpp:18