#include <Blackboard.h>
Public Member Functions | |
| iterator (ContentsMap::iterator it0) | |
| BBItemRef | operator * () |
| iterator & | operator++ () |
| iterator | operator++ (int) |
| iterator & | operator-- () |
| iterator | operator-- (int) |
| bool | operator== (const iterator &i2) |
| bool | operator!= (const iterator &i2) |
Private Attributes | |
| ContentsMap::iterator | it |
|
|
00222 {it==it0;}
|
|
|
00223 {return (*it).second;}
|
|
|
00229 {return it!=i2.it;}
|
|
|
|
|
|
00224 {++it; return *this;}
|
|
|
|
|
|
00226 {--it; return *this;}
|
|
|
00228 {return it==i2.it;}
|
|
|
|
1.4.1