#include <include/EDoc/StdErrFunctionProgress.h>
Inheritance diagram for EDoc::StdErrFunctionProgress:
This will display the progress to stderr in a format like:
xxx/yyy : FunctionName
Definition at line 35 of file StdErrFunctionProgress.h.
Public Member Functions | |
virtual void | Start (size_t total) |
See ProgressIFace::Start(). | |
virtual void | Progress (Function *data) |
See ProgressIFace::Progress(). | |
virtual void | Progress (T *data)=0 |
Called each time some progress is made that is to be shown to the user. | |
Data Fields | |
size_t | current |
size_t | total |
EDoc::StdErrFunctionProgress::Start | ( | size_t | total | ) | [virtual] |
Implements EDoc::ProgressIFace< T >.
Definition at line 31 of file StdErrFunctionProgress.cpp.
EDoc::StdErrFunctionProgress::Progress | ( | EDoc::Function * | data | ) | [virtual] |
See ProgressIFace::Progress().
Definition at line 37 of file StdErrFunctionProgress.cpp.
References current, EDoc::StringIdentifiedObject::GetKeyName(), and total.
virtual void EDoc::ProgressIFace< T >::Progress | ( | T * | data | ) | [pure virtual, inherited] |
Called each time some progress is made that is to be shown to the user.
Note: This must be called exactly total number of times, where total is the value passed to the Start() function.
Referenced by EDoc::Dictionary::GenerateExceptions().