Interface class for progress handling. More...
#include <ProgressInterface.h>
Inherited by RequestProgressDialog.
Public Member Functions | |
| virtual bool | GetCancel () |
| Called to test if the operation is to be canceled. | |
| virtual void | OnFinished (bool bSuccess) |
| Called when the operation is finished. | |
Interface class for progress handling.
Definition at line 32 of file ProgressInterface.h.
| virtual bool ProgressInterface::GetCancel | ( | ) | [inline, virtual] |
Called to test if the operation is to be canceled.
Reimplemented in RequestProgressDialog.
Definition at line 39 of file ProgressInterface.h.
Referenced by InternetRequest::InnerDoRequest().
| virtual void ProgressInterface::OnFinished | ( | bool | bSuccess | ) | [inline, virtual] |
Called when the operation is finished.
| bSuccess | true if finished successfully, false if failed (or canceled by the user) |
Reimplemented in RequestProgressDialog.
Definition at line 44 of file ProgressInterface.h.
Referenced by InternetRequest::DoRequest().
1.6.1