$treeview $search $mathjax
AirTSP Logo  1.01.2
$projectbrief
$projectbrief
$searchbox

SegmentCabinStruct.cpp

Go to the documentation of this file.
00001 // //////////////////////////////////////////////////////////////////////
00002 // Import section
00003 // //////////////////////////////////////////////////////////////////////
00004 // STL
00005 #include <cassert>
00006 #include <sstream>
00007 // StdAir
00008 #include <stdair/bom/SegmentCabin.hpp>
00009 // AirTSP
00010 #include <airtsp/bom/SegmentCabinStruct.hpp>
00011 
00012 namespace AIRTSP {
00013 
00014   // //////////////////////////////////////////////////////////////////////
00015   const std::string SegmentCabinStruct::describe() const {
00016     std::ostringstream ostr;
00017     ostr << "        " << _cabinCode << " " << _classes;
00018     return ostr.str();
00019   }
00020 
00021   // //////////////////////////////////////////////////////////////////////
00022   void SegmentCabinStruct::fill (stdair::SegmentCabin& ioSegmentCabin) const {  
00023   }
00024 
00025 }