SyB3R - Synthetic Benchmark for 3D Reconstruction
ShellExec.h
1 #ifndef SHELLEXEC_H
2 #define SHELLEXEC_H
3 
4 #include <stdio.h>
5 
6 namespace syb3r {
7 namespace tools {
8 
9 class ShellExec
10 {
11  public:
12  bool run(const char *cmd);
13  protected:
14  FILE *m_handle;
15 
16  virtual void parseLine(const char *line);
17  virtual bool parseReturnCode(int ret);
18 };
19 
20 }
21 }
22 
23 #endif // SHELLEXEC_H
Definition: CameraPathEvaluation.cpp:10
Definition: ShellExec.h:9