]> git.mxchange.org Git - flightgear.git/commitdiff
testair.cxx is a 21 lines long, obsolete test application. After removing
authormfranz <mfranz>
Tue, 12 May 2009 15:07:06 +0000 (15:07 +0000)
committerTim Moore <timoore@redhat.com>
Mon, 18 May 2009 10:24:17 +0000 (12:24 +0200)
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 [deleted file]

diff --git a/src/Airports/testair.cxx b/src/Airports/testair.cxx
deleted file mode 100644 (file)
index 97df920..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <Debug/fg_debug.h>
-#include <Include/general.h>
-#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);
-}