operator ++

The ++ operator increments the iterator.

The first signature defines the ++ operator used for "++i" usage; the second signature is used for "i++".

Visibility
Public
Signatures
OMUIterator& operator++()        //prefix

OMUIterator operator++(int i)    //postfix
Parameters
i

Dummy parameter


Feedback