Changes between Version 3 and Version 4 of code/doc/Identifier
- Timestamp:
- Feb 24, 2008, 10:53:40 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/doc/Identifier
v3 v4 74 74 #!cpp 75 75 Identifier* myidentifier = Class(BaseObject); 76 for (std::list<const Identifier*>::const_iterator it = myidentifier->getDirect ParentsBegin(); it != myidentifier->getDirectParentsEnd(); ++it)76 for (std::list<const Identifier*>::const_iterator it = myidentifier->getDirectChildrenBegin(); it != myidentifier->getDirectChildrenEnd(); ++it) 77 77 cout << (*it)->getName() << std::endl; 78 78 79 79 /* 80 returns :80 returns all direct children of BaseObject: 81 81 A1 82 82 A2