TuttleOFX
1
|
#include <OfxhProgress.hpp>
Public Member Functions | |
virtual | ~OfxhIProgress () |
virtual void | progressStart (const std::string &message)=0 |
Start doing progress. | |
virtual void | progressEnd ()=0 |
finish yer progress | |
virtual bool | progressUpdate (const double t)=0 |
Things that display progress derive from this ABC and implement the following functions.
Definition at line 42 of file OfxhProgress.hpp.
virtual tuttle::host::ofx::OfxhIProgress::~OfxhIProgress | ( | ) | [inline, virtual] |
Definition at line 45 of file OfxhProgress.hpp.
virtual void tuttle::host::ofx::OfxhIProgress::progressEnd | ( | ) | [pure virtual] |
finish yer progress
Implemented in tuttle::host::ImageEffectNode.
virtual void tuttle::host::ofx::OfxhIProgress::progressStart | ( | const std::string & | message | ) | [pure virtual] |
Start doing progress.
Implemented in tuttle::host::ImageEffectNode.
virtual bool tuttle::host::ofx::OfxhIProgress::progressUpdate | ( | const double | t | ) | [pure virtual] |
set the progress to some level of completion, returns true if you should abandon processing, false to continue
Implemented in tuttle::host::ImageEffectNode.