From: <qua...@us...> - 2009-10-02 13:53:26
|
Revision: 17 http://stdair.svn.sourceforge.net/stdair/?rev=17&view=rev Author: quannaus Date: 2009-10-02 13:53:17 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Small change in some functions. Modified Paths: -------------- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp Modified: trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp =================================================================== --- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:39:21 UTC (rev 16) +++ trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:53:17 UTC (rev 17) @@ -120,19 +120,19 @@ /** Initialise the internal iterators on bom objects: return the iterator past the end of the list. */ ListIterator_T listIteratorEnd () const { - return ListIterator_T(_bomChildrenOrderedList.end()); + return _bomChildrenOrderedList.end(); } /** Initialise the internal reverse iterators on bom objects: return the reverse iterator at the rbegining of the list. */ ListReverseIterator_T listIteratorRBegin () const { - return ListReverseIterator_T(_bomChildrenOrderedList.rbegin()); + return _bomChildrenOrderedList.rbegin(); } /** Initialise the internal reverse iterators on bom objects: return the reverse iterator past the rend of the list. */ ListReverseIterator_T listIteratorREnd () const { - return ListReverseIterator_T(_bomChildrenOrderedList.rend()); + return _bomChildrenOrderedList.rend(); } /** Initialise the internal const iterators on bom objects: @@ -162,25 +162,25 @@ /** Initialise the internal iterators on bom objects: return the iterator at the begining of the map. */ MapIterator_T mapIteratorBegin () const { - return MapIterator_T(_bomChildrenList.begin()); + return _bomChildrenList.begin(); } /** Initialise the internal iterators on bom objects: return the iterator past the end of the map. */ MapIterator_T mapIteratorEnd () const { - return MapIterator_T(_bomChildrenList.end()); + return _bomChildrenList.end(); } /** Initialise the internal reverse iterators on bom objects: return the reverse iterator at the rbegining of the map. */ MapReverseIterator_T mapIteratorRBegin () const { - return MapReverseIterator_T(_bomChildrenList.rbegin()); + return _bomChildrenList.rbegin(); } /** Initialise the internal reverse iterators on bom objects: return the reverse iterator past the rend of the map. */ MapReverseIterator_T mapIteratorREnd () const { - return MapReverseIterator_T(_bomChildrenList.rend()); + return _bomChildrenList.rend(); } private: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |