X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Fmarker_beacon.cxx;h=52b3c67789b4f3b17bfb717717db8abf8a431cb4;hb=6b9aa0fb970e90aaf8d6800b77b3abe84ae9906d;hp=41b981536a6262e6da037e66b03e5523bda64518;hpb=043128c7c093c99125ba0ece4c0bcc0b697d2a63;p=flightgear.git diff --git a/src/Instrumentation/marker_beacon.cxx b/src/Instrumentation/marker_beacon.cxx index 41b981536..52b3c6778 100644 --- a/src/Instrumentation/marker_beacon.cxx +++ b/src/Instrumentation/marker_beacon.cxx @@ -30,6 +30,7 @@ #include #include #include +#include #include @@ -39,7 +40,6 @@ #include using std::string; - // Constructor FGMarkerBeacon::FGMarkerBeacon(SGPropertyNode *node) : audio_vol(NULL), @@ -51,18 +51,6 @@ FGMarkerBeacon::FGMarkerBeacon(SGPropertyNode *node) : _time_before_search_sec(0.0), _sgr(NULL) { - SGPath path( globals->get_fg_root() ); - SGPath term = path; - term.append( "Navaids/range.term" ); - SGPath low = path; - low.append( "Navaids/range.low" ); - SGPath high = path; - high.append( "Navaids/range.high" ); - - term_tbl = new SGInterpTable( term.str() ); - low_tbl = new SGInterpTable( low.str() ); - high_tbl = new SGInterpTable( high.str() ); - for ( int i = 0; i < node->nChildren(); ++i ) { SGPropertyNode *child = node->getChild(i); string cname = child->getName(); @@ -85,9 +73,6 @@ FGMarkerBeacon::FGMarkerBeacon(SGPropertyNode *node) : // Destructor FGMarkerBeacon::~FGMarkerBeacon() { - delete term_tbl; - delete low_tbl; - delete high_tbl; }