Definition at line 190 of file glue_control.cpp.
| count_iterator_rep | ( | const int & | s, |
| const int & | e | ||
| ) | [inline] |
Definition at line 193 of file glue_control.cpp.
: start (s), end (e) {}
| ~count_iterator_rep | ( | ) | [inline] |
Definition at line 194 of file glue_control.cpp.
{}
| void advance | ( | ) | [inline, protected] |
Definition at line 197 of file glue_control.cpp.
{ start++; }
| iterator_rep<generic>* clone | ( | ) | [inline, protected] |
Definition at line 199 of file glue_control.cpp.
{
return new count_iterator_rep (start, end); }
| generic current | ( | ) | [inline, protected] |
Definition at line 198 of file glue_control.cpp.
{ return as<generic> (start); }
| bool is_busy | ( | ) | [inline, protected] |
Definition at line 196 of file glue_control.cpp.
{ return start < end; }
1.7.2