From: <qua...@us...> - 2009-10-19 08:50:50
|
Revision: 48 http://stdair.svn.sourceforge.net/stdair/?rev=48&view=rev Author: quannaus Date: 2009-10-19 08:50:43 +0000 (Mon, 19 Oct 2009) Log Message: ----------- [Dev] Changed constructors from private to protected. Modified Paths: -------------- trunk/stdair/stdair/bom/BomRoot.hpp trunk/stdair/stdair/bom/BookingClass.hpp trunk/stdair/stdair/bom/FlightDate.hpp trunk/stdair/stdair/bom/Inventory.hpp trunk/stdair/stdair/bom/LegCabin.hpp trunk/stdair/stdair/bom/LegDate.hpp trunk/stdair/stdair/bom/SegmentCabin.hpp trunk/stdair/stdair/bom/SegmentDate.hpp Modified: trunk/stdair/stdair/bom/BomRoot.hpp =================================================================== --- trunk/stdair/stdair/bom/BomRoot.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/BomRoot.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -109,7 +109,7 @@ return _bomRootStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/BookingClass.hpp =================================================================== --- trunk/stdair/stdair/bom/BookingClass.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/BookingClass.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -64,7 +64,7 @@ return _bookingClassStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/FlightDate.hpp =================================================================== --- trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/FlightDate.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -90,7 +90,7 @@ return _flightDateStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/Inventory.hpp =================================================================== --- trunk/stdair/stdair/bom/Inventory.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/Inventory.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -79,7 +79,7 @@ return _inventoryStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/LegCabin.hpp =================================================================== --- trunk/stdair/stdair/bom/LegCabin.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/LegCabin.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -57,7 +57,7 @@ return _legCabinStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/LegDate.hpp =================================================================== --- trunk/stdair/stdair/bom/LegDate.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/LegDate.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -72,7 +72,7 @@ return _legDateStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/SegmentCabin.hpp =================================================================== --- trunk/stdair/stdair/bom/SegmentCabin.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/SegmentCabin.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -72,7 +72,7 @@ return _segmentCabinStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ Modified: trunk/stdair/stdair/bom/SegmentDate.hpp =================================================================== --- trunk/stdair/stdair/bom/SegmentDate.hpp 2009-10-15 15:11:19 UTC (rev 47) +++ trunk/stdair/stdair/bom/SegmentDate.hpp 2009-10-19 08:50:43 UTC (rev 48) @@ -72,7 +72,7 @@ return _segmentDateStructure; } - private: + protected: /** Constructors are private so as to force the usage of the Factory layer. */ /** Default constructors. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |