does anybody know what is this operator overloading called?
Code:
virtual operator progress() const;
Printable View
does anybody know what is this operator overloading called?
Code:
virtual operator progress() const;
this is typecast operator overloading, and this will cast / convert this to progress type
Edit: it being virtual function, the derived classes can redefine it to have dynamic behavior when converted to progress type