A Monitor is an abstract user callback method to get informations about an event in progress. More...
Public Member Functions | |
| virtual void | write (const char *mess)=0 |
| Called when a text information can be useful for the user. | |
| virtual void | setProgress (int pos, int len)=0 |
| Informs about the current progression of the event. | |
A Monitor is an abstract user callback method to get informations about an event in progress.
| virtual void Monitor::setProgress | ( | int | pos, | |
| int | len | |||
| ) | [pure virtual] |
Informs about the current progression of the event.
The method can do nothing or shows a progress bar or whatever you want.
| pos | The position from 0 to len. | |
| len | The length of the event. |
| virtual void Monitor::write | ( | const char * | mess | ) | [pure virtual] |
Called when a text information can be useful for the user.
| mess | The text (string zero) to be displayed. The method can do nothing. |
1.7.1