#ifndef RAPIDAPPPIPECONTROLLER_H #define RAPIDAPPPIPECONTROLLER_H #include #include #include "VideoMoveCaptureElement.h" #include "TriggerElement.h" #include class RapidAppPipeController : public PipeController { public: RapidAppPipeController(int index, const Json::Value &json, const std::string &outPath); virtual ~RapidAppPipeController(); bool getIsRunning() const; std::string getPath(); private: VideoMoveCaptureElement videoCaptureElement; TriggerElement triggerElement; int index; bool bUp; Json::Value m_json; }; #endif // RAPIDAPPPIPECONTROLLER_H