From: mfranz Date: Tue, 12 May 2009 15:07:06 +0000 (+0000) Subject: testair.cxx is a 21 lines long, obsolete test application. After removing X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b87e8ba3eed221871877d0849c760b0f4ae50fda;p=flightgear.git testair.cxx is a 21 lines long, obsolete test application. After removing all lines that refer to no longer existing headers/classes/functions, then this is what remains: int main() { printf("boo!\n"); return 0; } --- diff --git a/src/Airports/testair.cxx b/src/Airports/testair.cxx deleted file mode 100644 index 97df920ee..000000000 --- a/src/Airports/testair.cxx +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include "airports.hxx" - -fgGENERAL general; - -main() { - fgAIRPORTS a; - fgAIRPORT air; - - general.root_dir = getenv("FG_ROOT"); - - fgInitDebug(); - - a.load("Airports"); - - air = a.search("P13"); - - printf("%s %lf %lf %lf\n", air.id, - air.longitude, air.latitude, air.elevation); -}