From: <qua...@us...> - 2009-10-06 12:48:06
|
Revision: 31 http://stdair.svn.sourceforge.net/stdair/?rev=31&view=rev Author: quannaus Date: 2009-10-06 12:47:57 +0000 (Tue, 06 Oct 2009) Log Message: ----------- [Dev] Reverted to the revision 28. Revision Links: -------------- http://stdair.svn.sourceforge.net/stdair/?rev=28&view=rev Modified Paths: -------------- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp trunk/stdair/stdair/bom/FlightDate.hpp trunk/stdair/stdair/bom/Inventory.hpp Modified: trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp =================================================================== --- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-06 12:23:47 UTC (rev 30) +++ trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-06 12:47:57 UTC (rev 31) @@ -87,7 +87,7 @@ // /////////// Iteration methods ////////// /** Initialise the internal const iterators on bom objects: return the iterator at the begining of the list. */ - ListConstIterator_T listBegin () const { + ListConstIterator_T listConstIteratorBegin () const { return _bomChildrenOrderedList.begin(); } @@ -111,7 +111,7 @@ /** Initialise the internal iterators on bom objects: return the iterator at the begining of the list. */ - ListIterator_T listBegin () { + ListIterator_T listIteratorBegin () { return ListIterator_T(_bomChildrenOrderedList.begin()); } Modified: trunk/stdair/stdair/bom/FlightDate.hpp =================================================================== --- trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-06 12:23:47 UTC (rev 30) +++ trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-06 12:47:57 UTC (rev 31) @@ -195,9 +195,9 @@ // /////////// Iteration methods ////////// /** Initialise the internal const iterator on segment date: return the const iterator at the begining of the list. */ - SegmentDateListConstIterator_T segmentDateListBegin () const { + SegmentDateListConstIterator_T segmentDateListConstIteratorBegin () const { assert (_childrenList != NULL); - return _childrenList->listBegin (); + return _childrenList->listConstIteratorBegin (); } /** Initialise the internal const iterator on segment date: @@ -223,9 +223,9 @@ /** Initialise the internal iterator on segment date: return the iterator at the begining of the list. */ - SegmentDateListIterator_T segmentDateListBegin () { + SegmentDateListIterator_T segmentDateListIteratorBegin () const { assert (_childrenList != NULL); - return _childrenList->listaBegin (); + return _childrenList->listIteratorBegin (); } /** Initialise the internal iterator on segment date: @@ -308,9 +308,9 @@ /** Initialise the internal const iterator on leg date: return the const iterator at the begining of the list. */ - LegDateListConstIterator_T legDateListBegin () const { + LegDateListConstIterator_T legDateListConstIteratorBegin () const { assert (_secondChildrenList != NULL); - return _secondChildrenList->listBegin (); + return _secondChildrenList->listConstIteratorBegin (); } /** Initialise the internal const iterator on leg date: @@ -336,9 +336,9 @@ /** Initialise the internal iterator on leg date: return the iterator at the begining of the list. */ - LegDateListIterator_T legDateListBegin () { + LegDateListIterator_T legDateListIteratorBegin () const { assert (_secondChildrenList != NULL); - return _secondChildrenList->listBegin (); + return _secondChildrenList->listIteratorBegin (); } /** Initialise the internal iterator on leg date: Modified: trunk/stdair/stdair/bom/Inventory.hpp =================================================================== --- trunk/stdair/stdair/bom/Inventory.hpp 2009-10-06 12:23:47 UTC (rev 30) +++ trunk/stdair/stdair/bom/Inventory.hpp 2009-10-06 12:47:57 UTC (rev 31) @@ -155,9 +155,9 @@ // /////////// Iteration methods ////////// /** Initialise the internal const iterator on flight date: return the const iterator at the begining of the list. */ - FlightDateListConstIterator_T flightDateListBegin () const { + FlightDateListConstIterator_T flightDateListConstIteratorBegin () const { assert (_childrenList != NULL); - return _childrenList->listBegin (); + return _childrenList->listConstIteratorBegin (); } /** Initialise the internal const iterator on flight date: @@ -183,9 +183,9 @@ /** Initialise the internal iterator on flight date: return the iterator at the begining of the list. */ - FlightDateListIterator_T flightDateListBegin () { + FlightDateListIterator_T flightDateListIteratorBegin () const { assert (_childrenList != NULL); - return _childrenList->listBegin (); + return _childrenList->listIteratorBegin (); } /** Initialise the internal iterator on flight date: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |