Hello,
I have a prob.
Qt Code:
  1. vector<Some> some(10);
  2. vector<Some>::iterator ii;
  3. vector<Some>::iterator cc;
To copy to clipboard, switch view to plain text mode 
assuming that ii is at the last element of some I need to do:
Qt Code:
  1. cc=ii+1 //I'm out
  2. if (cc <= some.size()) ....
To copy to clipboard, switch view to plain text mode 
In other words i need to know when ii+1 is an iterator more large of 10 (number of elements of verctor)
Thanks