From b87e8ba3eed221871877d0849c760b0f4ae50fda Mon Sep 17 00:00:00 2001 From: mfranz Date: Tue, 12 May 2009 15:07:06 +0000 Subject: [PATCH] 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; } --- src/Airports/testair.cxx | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/Airports/testair.cxx 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); -} -- 2.39.5