]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.cxx
Bernie Bright:
[flightgear.git] / src / Main / globals.cxx
index 125bfc39b1a631e563bedc5c63e2beaf30194338..6d1a7bf340a80f22870f444cdc88fc61798e742c 100644 (file)
@@ -29,7 +29,7 @@
 #include "viewmgr.hxx"
 
 #include "fg_props.hxx"
-
+#include "fg_io.hxx"
 
 \f
 ////////////////////////////////////////////////////////////////////////
@@ -51,7 +51,8 @@ FGGlobals::FGGlobals() :
     logger(0),
     props(new SGPropertyNode),
     initial_state(0),
-    commands(new SGCommandMgr)
+    commands(new SGCommandMgr),
+    io(new FGIO)
 {
 }
 
@@ -62,6 +63,7 @@ FGGlobals::~FGGlobals()
   delete initial_state;
   delete props;
   delete commands;
+  delete io;
 }