TDME2 1.9.121
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 * @version $Id$
10 */
12{
13 /**
14 * Destructor
15 */
16 virtual ~ProgressCallback() {}
17
18 /**
19 * Perform action
20 */
21 virtual void progress(float value) = 0;
22
23};
virtual void progress(float value)=0
Perform action.