#include <agent_object.h>
Inheritance diagram for NLAIAGENT::CListIterator:
Nevrax France
Definition at line 395 of file agent_object.h.
Public Member Functions | |
CListIterator (std::list< const IObjectIA * > &l) | |
virtual void | erase () |
virtual bool | isInBegin () const |
virtual bool | isInEnd () const |
virtual | operator const IObjetOp * () const |
virtual const IObjetOp * | operator++ (int) |
virtual const IObjetOp * | operator-- (int) |
virtual | ~CListIterator () |
|
Definition at line 398 of file agent_object.h. References const.
00398 : CTemplateIterator<std::list<const IObjectIA *> >(l) 00399 { 00400 } |
|
Definition at line 402 of file agent_object.h.
00403 { 00404 } |
|
Implements NLAIAGENT::IBasicIterator. Definition at line 328 of file agent_object.h.
00329 {
00330 typename typeClass::iterator temp = _I;
00331 _I++;
00332 _ListType.erase(temp);
00333 }
|
|
Implements NLAIAGENT::IConstBasicIterator. Definition at line 340 of file agent_object.h.
00341 {
00342 return _I == _ListType.begin();
00343 }
|
|
Implements NLAIAGENT::IConstBasicIterator. Definition at line 335 of file agent_object.h.
00336 {
00337 return _I == _ListType.end();
00338 }
|
|
Implements NLAIAGENT::IConstBasicIterator. Definition at line 323 of file agent_object.h.
00324 { 00325 return (const IObjetOp *)*_I; 00326 } |
|
Implements NLAIAGENT::IConstBasicIterator. Definition at line 314 of file agent_object.h.
00315 { 00316 return (const IObjetOp*)*_I++; 00317 } |
|
Implements NLAIAGENT::IConstBasicIterator. Definition at line 318 of file agent_object.h.
00319 { 00320 return (const IObjetOp*)*_I--; 00321 } |