|
From: <qua...@us...> - 2009-10-06 12:24:02
|
Revision: 30
http://stdair.svn.sourceforge.net/stdair/?rev=30&view=rev
Author: quannaus
Date: 2009-10-06 12:23:47 +0000 (Tue, 06 Oct 2009)
Log Message:
-----------
[Dev] Some small changes.
Modified Paths:
--------------
trunk/stdair/stdair/bom/FlightDate.hpp
trunk/stdair/stdair/bom/Inventory.hpp
Modified: trunk/stdair/stdair/bom/FlightDate.hpp
===================================================================
--- trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-06 12:19:31 UTC (rev 29)
+++ trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-06 12:23:47 UTC (rev 30)
@@ -223,9 +223,9 @@
/** Initialise the internal iterator on segment date:
return the iterator at the begining of the list. */
- SegmentDateListIterator_T segmentDateListBegin () const {
+ SegmentDateListIterator_T segmentDateListBegin () {
assert (_childrenList != NULL);
- return _childrenList->listBegin ();
+ return _childrenList->listaBegin ();
}
/** Initialise the internal iterator on segment date:
@@ -336,7 +336,7 @@
/** Initialise the internal iterator on leg date:
return the iterator at the begining of the list. */
- LegDateListIterator_T legDateListBegin () const {
+ LegDateListIterator_T legDateListBegin () {
assert (_secondChildrenList != NULL);
return _secondChildrenList->listBegin ();
}
Modified: trunk/stdair/stdair/bom/Inventory.hpp
===================================================================
--- trunk/stdair/stdair/bom/Inventory.hpp 2009-10-06 12:19:31 UTC (rev 29)
+++ trunk/stdair/stdair/bom/Inventory.hpp 2009-10-06 12:23:47 UTC (rev 30)
@@ -183,7 +183,7 @@
/** Initialise the internal iterator on flight date:
return the iterator at the begining of the list. */
- FlightDateListIterator_T flightDateListBegin () const {
+ FlightDateListIterator_T flightDateListBegin () {
assert (_childrenList != NULL);
return _childrenList->listBegin ();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|