TDME2  1.9.200
ProgressCallback.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <tdme/tdme.h>
5 
6 /**
7  * Progress Callback
8  * @author Andreas Drewke
9  */
11 {
12  /**
13  * Destructor
14  */
15  virtual ~ProgressCallback() {}
16 
17  /**
18  * Perform action
19  */
20  virtual void progress(float value) = 0;
21 
22 };
virtual void progress(float value)=0
Perform action.