#include <pxl_callback.h>

Public Member Functions | |
| virtual bool | callback (size_t inPercentage)=0 |
Definition at line 25 of file pxl_callback.h.
| virtual bool Celartem::ProcessCallback::callback | ( | size_t | inPercentage | ) | [pure virtual] |
ProcessCallback is a general form for periodically report the progress status of the process. You can also throw some exception from the callback function to terminate the process; although the process is terminated by the exception, the system can go on without any unrecoverable problem.
| inPercentage | This parameter indicates the current process status. The value must be in 0-100. |
true if you want to continue the process, false if you want to cancel(terminate) the process.