TTK
Loading...
Searching...
No Matches
Wrapper.h
Go to the documentation of this file.
1
7
8#pragma once
9
10#include <Debug.h>
11
12namespace ttk {
13
14 class Wrapper : public Debug {
15
16 public:
19 }
20
21 ~Wrapper() override = default;
22
23 virtual bool needsToAbort() = 0;
24
25 virtual int updateProgress(const float &progress) = 0;
26
27 protected:
29 };
30} // namespace ttk
Minimalist debugging class.
Definition: Debug.h:88
Wrapper class to wrap ttk code.
Definition: Wrapper.h:14
~Wrapper() override=default
virtual int updateProgress(const float &progress)=0
float processingProgress_
Definition: Wrapper.h:28
virtual bool needsToAbort()=0
The Topology ToolKit.