Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/doc/Identifier


Ignore:
Timestamp:
Feb 24, 2008, 10:53:40 PM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/Identifier

    v3 v4  
    7474#!cpp
    7575Identifier* myidentifier = Class(BaseObject);
    76 for (std::list<const Identifier*>::const_iterator it = myidentifier->getDirectParentsBegin(); it != myidentifier->getDirectParentsEnd(); ++it)
     76for (std::list<const Identifier*>::const_iterator it = myidentifier->getDirectChildrenBegin(); it != myidentifier->getDirectChildrenEnd(); ++it)
    7777  cout << (*it)->getName() << std::endl;
    7878
    7979/*
    80 returns:
     80returns all direct children of BaseObject:
    8181A1
    8282A2