WTFIT
Wrapper.h
Go to the documentation of this file.
1 
8 #ifndef _WRAPPER_H
9 #define _WRAPPER_H
10 
11 #include <Debug.h>
12 
13 namespace wtfit{
14 
15  class Wrapper : public Debug{
16 
17  public:
18 
21  };
22 
23  ~Wrapper(){};
24 
25  virtual bool needsToAbort() = 0;
26 
27  virtual int updateProgress(const float &progress) = 0;
28 
29  protected:
30 
32 
33  };
34 }
35 
36 #endif
virtual bool needsToAbort()=0
Wrapper()
Definition: Wrapper.h:19
virtual int updateProgress(const float &progress)=0
Wrapper class to wrap wtfit code.
Definition: Wrapper.h:15
float processingProgress_
Definition: Wrapper.h:31
~Wrapper()
Definition: Wrapper.h:23
Minimalist debugging class.
Definition: Debug.h:39
Definition: CommandLineParser.h:13