派生自 development/c++

pansen
2019-03-07 979bc003bce710bf300bc2bd87a8278585678763
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef RAPIDAPPPIPECONTROLLER_H
#define RAPIDAPPPIPECONTROLLER_H
 
#include <basic/pipe/PipeController.h>
#include <basic/pipe_element/ImageShowElement.h>
#include "VideoMoveCaptureElement.h"
#include "TriggerElement.h"
#include <jsoncpp/json/json.h>
 
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