StdAir Logo  1.00.3
C++ Standard Airline IT Object Library
AirportPairKey.cpp
Go to the documentation of this file.
1 // //////////////////////////////////////////////////////////////////////
2 // Import section
3 // //////////////////////////////////////////////////////////////////////
4 // STL
5 #include <ostream>
6 #include <sstream>
7 // STDAIR
11 
12 namespace stdair {
13 
14  // ////////////////////////////////////////////////////////////////////
15  AirportPairKey::AirportPairKey ()
16  : _boardingPoint (DEFAULT_ORIGIN),
17  _offPoint (DEFAULT_DESTINATION) {
18  assert (false);
19  }
20 
21  // ////////////////////////////////////////////////////////////////////
22  AirportPairKey::AirportPairKey (const AirportCode_T& iBoardingPoint,
23  const AirportCode_T& iOffPoint)
24  : _boardingPoint (iBoardingPoint), _offPoint (iOffPoint) {
25  }
26 
27  // ////////////////////////////////////////////////////////////////////
28  AirportPairKey::AirportPairKey (const AirportPairKey& iKey)
29  : _boardingPoint (iKey._boardingPoint),
30  _offPoint (iKey._offPoint) {
31  }
32 
33  // ////////////////////////////////////////////////////////////////////
35  }
36 
37  // ////////////////////////////////////////////////////////////////////
38  void AirportPairKey::toStream (std::ostream& ioOut) const {
39  ioOut << "AirportPairKey: " << toString() << std::endl;
40  }
41 
42  // ////////////////////////////////////////////////////////////////////
43  void AirportPairKey::fromStream (std::istream& ioIn) {
44  }
45 
46  // ////////////////////////////////////////////////////////////////////
47  const std::string AirportPairKey::toString() const {
48  std::ostringstream oStr;
49  oStr << _boardingPoint << DEFAULT_KEY_SUB_FLD_DELIMITER
50  << " " << _offPoint;
51  return oStr.str();
52  }
53 
54 }
const std::string DEFAULT_KEY_SUB_FLD_DELIMITER
void fromStream(std::istream &ioIn)
LocationCode_T AirportCode_T
const AirportCode_T DEFAULT_ORIGIN
Handle on the StdAir library context.
const AirportCode_T DEFAULT_DESTINATION
void toStream(std::ostream &ioOut) const
Key of airport-pair.
const std::string toString() const