Progress Event
Occurs when PercentDone of the input is read.
Syntax
class NetCodeProgressEventParams { public: int PercentDone(); int EventRetVal(); void SetEventRetVal(int iRetVal); };
// To handle, connect one or more slots to this signal. void Progress(NetCodeProgressEventParams *e);
// Or, subclass NetCode and override this emitter function. virtual int FireProgress(NetCodeProgressEventParams *e) {...}
Remarks
The ProgressStep property determines how often the event is fired.