stdex
Additional custom or not Standard C++ covered algorithms
Loading...
Searching...
No Matches
stdex::aggregate_progress< T >::worker_progress Class Reference

Progress indicator for individual worker. More...

#include <stdex/progress.hpp>

Inheritance diagram for stdex::aggregate_progress< T >::worker_progress:
stdex::progress< T >

Public Member Functions

 worker_progress (aggregate_progress< T > &host)
 
virtual void set_text (const char *msg)
 Set progress indicator text.
 
virtual void set_range (T start, T end)
 Set local extend of the progress indicator.
 
virtual void set (T value)
 Set local current progress.
 
virtual void show (bool show=true)
 Show or hide progress.
 
virtual bool cancel ()
 Query whether user requested abort.
 
- Public Member Functions inherited from stdex::progress< T >

Protected Attributes

aggregate_progress< T > & m_host
 
m_start
 
m_end
 
m_value
 

Detailed Description

template<class T>
class stdex::aggregate_progress< T >::worker_progress

Progress indicator for individual worker.

Member Function Documentation

◆ cancel()

template<class T >
virtual bool stdex::aggregate_progress< T >::worker_progress::cancel ( )
inlinevirtual

Query whether user requested abort.

Reimplemented from stdex::progress< T >.

◆ set()

template<class T >
virtual void stdex::aggregate_progress< T >::worker_progress::set ( T value)
inlinevirtual

Set local current progress.

Parameters
[in]valueCurrent value of the progress. Must be between start and end parameters provided in set_range() call.

Reimplemented from stdex::progress< T >.

◆ set_range()

template<class T >
virtual void stdex::aggregate_progress< T >::worker_progress::set_range ( T start,
T end )
inlinevirtual

Set local extend of the progress indicator.

Parameters
[in]startMinimum value of the progress
[in]endMaximum value of the progress

Reimplemented from stdex::progress< T >.

◆ set_text()

template<class T >
virtual void stdex::aggregate_progress< T >::worker_progress::set_text ( const char * msg)
inlinevirtual

Set progress indicator text.

Parameters
[in]msgText to display

Reimplemented from stdex::progress< T >.

◆ show()

template<class T >
virtual void stdex::aggregate_progress< T >::worker_progress::show ( bool show = true)
inlinevirtual

Show or hide progress.

Parameters
[in]showShows or hides progress indicator

Reimplemented from stdex::progress< T >.


The documentation for this class was generated from the following file: