#include <Progress.h>
Public Member Functions | |
virtual void | progressRange (int min, int max)=0 |
virtual void | progress (int value)=0 |
Callback interface for TSE3 classes that provide progress information. This is used, for example, by the file import/export mechanisms (see TSE3MDL, MidiFileImport and MidiFileExport) and the Util::Demidify utility.
|
Called by a progress information generator before the first call to progress(). It defines the minimum and maximum values the progress values range between.
|
|
Whilst an operation is being performed by a class that uses the Progress interface, this callback will be intermittantly invoked.
Before it is called for the first time, the progressRange method will be invoked, to give meaning to the
|