X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAirports%2Frunwayprefloader.cxx;h=bfdcf8dd660d318c67c583c3fc0a311e82dae9c2;hb=386aefe69358ce41a11c9afeb8f56e26758fe56b;hp=05a54dacaf7d42d40287bf640aa8d34642e89c9e;hpb=4238a46faa8fc8e9ac9174fe960eb7c5df188a4c;p=flightgear.git diff --git a/src/Airports/runwayprefloader.cxx b/src/Airports/runwayprefloader.cxx index 05a54daca..bfdcf8dd6 100644 --- a/src/Airports/runwayprefloader.cxx +++ b/src/Airports/runwayprefloader.cxx @@ -13,10 +13,15 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // +#include +#include + #include #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;