]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/runwayprefloader.cxx
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / src / Airports / runwayprefloader.cxx
index 05a54dacaf7d42d40287bf640aa8d34642e89c9e..bfdcf8dd660d318c67c583c3fc0a311e82dae9c2 100644 (file)
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 
+#include <cstring>
+#include <cstdlib>
+
 #include <simgear/debug/logstream.hxx>
 
 #include "runwayprefloader.hxx"
 
+using namespace std;
+
 FGRunwayPreferenceXMLLoader::FGRunwayPreferenceXMLLoader(FGRunwayPreference* p):XMLVisitor(), _pref(p) {}
 
 void  FGRunwayPreferenceXMLLoader::startXML () {
@@ -114,6 +119,12 @@ void  FGRunwayPreferenceXMLLoader::endElement (const char * name) {
     _pref->setMilTimes(currTimes);
     currTimes.clear();
   }
+  if (!(strcmp(name, "ul"))) { // Military Traffic
+    //cerr << "Setting time table for military traffic" << endl;
+    _pref->setULTimes(currTimes);
+    currTimes.clear();
+  }
+
 
   if (!(strcmp(name, "takeoff"))) {
     //cerr << "Adding takeoff: " << value << endl;