19 std::cout <<
"Place: " <<
_name <<
" (" <<
_code <<
")" << std::endl;
61 const std::string isPreferredStr = (
_isPreferred)?
"+":
"-";
62 std::cout <<
"Airline: " << isPreferredStr <<
_name <<
" (" <<
_code <<
")"
88 {
"Adult",
"Child",
"Pet" };
106 std::cout << std::endl;
108 for (PlaceList_T::const_iterator itPlace =
_placeList.begin();
110 const Place_T& lPlace = *itPlace;
114 for (DateList_T::const_iterator itDate =
_dateList.begin();
116 const Date_T& lDate = *itDate;
120 for (AirlineList_T::const_iterator itAirline =
_airlineList.begin();
126 for (PassengerList_T::const_iterator itPassenger =
_passengerList.begin();
132 std::cout <<
"-- Staging --" << std::endl;